Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 288 for mentioned (0.14 sec)

  1. docs/sts/assume-role.md

    | *Required* | *Yes*    |
    
    ### AUTHPARAMS
    
    Indicates STS API Authorization information. If you are familiar with AWS Signature V4 Authorization header, this STS API supports signature V4 authorization as mentioned [here](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html)
    
    ### DurationSeconds
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    image::ci-systems/jenkins-scm.png[]
    
    Furthermore, create a "Build step" in the section "Build" by selecting "Invoke Gradle script".
    As mentioned before, we'll want to use the Wrapper to execute the build. In the "Tasks" input box enter the `build` and use the "Switches" `--scan -s` to generate a build scan and render a stack trace in case of a build failure.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/coverage/cover.go

    	var metavar *ir.Name
    	var pkgidvar *ir.Name
    
    	ckTypSanity := func(nm *ir.Name, tag string) {
    		if nm.Type() == nil || nm.Type().HasPointers() {
    			base.Fatalf("unsuitable %s %q mentioned in coveragecfg, improper type '%v'", tag, nm.Sym().Name, nm.Type())
    		}
    	}
    
    	for _, nm := range typecheck.Target.Externs {
    		s := nm.Sym()
    		switch s.Name {
    		case metaVarName:
    			metavar = nm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/README.md

    The command will generate the `scrape_configs` section of the prometheus.yml as follows:
    
    ##### Cluster
    
    ```yaml
    scrape_configs:
    - job_name: minio-job
      bearer_token: <secret>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. ReadMe.md

    ```
    
    *`resolveDependencies` task resolves dependencies for all platforms including dependencies downloaded by plugins.*
    
    Keep in mind:
    
    - If you’re adding a dependency with OS mentioned in an artifact name (`darwin`, `mac`, `osx`, `linux`, `windows`), remember to add them to 
      `implicitDependencies` configuration or update `resolveDependencies` task if needed. `resolveDependencies` should resolve all dependencies
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    * For Javadocs, follow the [Javadoc Style Guide](JavadocStyleGuide.md).
    * For new features, the feature should be mentioned in the [Release Notes](platforms/documentation/docs/src/docs/release/notes.md).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/OptionalTest.java

        return FluentIterable.from(ImmutableList.<Number>of());
      }
    
      /*
       * The following tests demonstrate the shortcomings of or() and test that the casting workaround
       * mentioned in the method Javadoc does in fact compile.
       */
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeError1() {
        Optional<Integer> optionalInt = getSomeOptionalInt();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	}
    	// Note that even if the request is for a list, the GV of the request UnstructuredList is what
    	// is expected to convert to. As mentioned in the function's document, it is not expected to
    	// get a v1.List.
    	if !c.validVersions[fromGVK.GroupVersion()] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/os/signal/signal.go

    	defer handlers.Unlock()
    
    	for c, h := range handlers.m {
    		if h.want(n) {
    			// send but do not block for it
    			select {
    			case c <- sig:
    			default:
    			}
    		}
    	}
    
    	// Avoid the race mentioned in Stop.
    	for _, d := range handlers.stopping {
    		if d.h.want(n) {
    			select {
    			case d.c <- sig:
    			default:
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    
    Refining Guesses
    
    Before we check whether u < q̂·v, we can adjust our guess to change it from
    q̂ = ⌊uₙuₙ₋₁ / vₙ₋₁⌋ into the refined guess ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋.
    Although not mentioned above, the Good Guess Guarantee also promises that this
    3-by-2-digit division guess is more precise and at most one away from the real
    answer q. The improvement from the 2-by-1 to the 3-by-2 guess can also be done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top