Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,249 for addOne (0.11 sec)

  1. cmd/kubeadm/app/cmd/options/token.go

    	return bto
    }
    
    // BootstrapTokenOptions is a wrapper struct for adding bootstrap token-related flags to a FlagSet
    // and applying the parsed flags to a InitConfiguration object later at runtime
    // TODO: In the future, we might want to group the flags in a better way than adding them all individually like this
    type BootstrapTokenOptions struct {
    	*bootstraptokenv1.BootstrapToken
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

             */
            @Nullable
            public Throwable getClientFailure() {
                return clientFailure;
            }
    
            /**
             * Returns a copy of this result adding the given failures.
             */
            public Result addFailures(List<Throwable> failures) {
                if (failures.isEmpty()) {
                    return this;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

                        // Ensure parameters.outputFile is set before adding ourselves as a listener
                        if (!parameters.outputFile.present) {
                            throw new IllegalStateException("parameters.outputFile is not set")
                        }
                        loggingOutput = objects.newInstance(InternalServices).loggingOutput
                        println("ADDING " + this + " TO " + loggingOutput)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies/groovy/build.gradle

    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies[]
    testing {
        suites {
            test { // <1>
                dependencies {
                    // Note that this is equivalent to adding dependencies to testImplementation in the top-level dependencies block
                    implementation 'org.assertj:assertj-core:3.21.0' // <2>
                    annotationProcessor 'com.google.auto.value:auto-value:1.9' // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/typed_xds_cache_test.go

    		},
    	}
    
    	c := newTypedXdsCache[uint64]()
    
    	cache := c.(*lruCache[uint64])
    
    	assert.Equal(t, cache.store.Len(), 0)
    	assert.Equal(t, cache.indexLength(), 0)
    
    	// adding the entry populates the indexes
    	c.Add(firstEntry.Key(), firstEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    	assert.Equal(t, cache.indexLength(), 2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

            accept("(,2.0]", "2.0")
    
            accept("(,2.0[", "0")
            accept("(,2.0[", "0.1.2")
            accept("(,2.0[", "1.99")
        }
    
        def "accepts candidate versions that fall into the selector's range (adding qualifiers to the mix)"() {
            expect:
            accept("[1.0,2.0]", "1.5-dev-1")
            accept("[1.0,2.0]", "1.2.3-rc-2")
            accept("[1.0,2.0]", "2.0-final")
    
            accept("[1.0-dev-1,2.0[", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. releasenotes/notes/kiali-update-v1.63.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 01 02:34:21 UTC 2023
    - 131 bytes
    - Viewed (0)
  8. releasenotes/notes/kiali-update-v1.79.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 16:56:53 UTC 2024
    - 131 bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa_s390x.go

    		priv.D.FillBytes(params[3*blockSize : 4*blockSize])
    		k.FillBytes(params[4*blockSize : 5*blockSize])
    		// Convert verify function code into a sign function code by adding 8.
    		// We also need to set the 'deterministic' bit in the function code, by
    		// adding 128, in order to stop the instruction using its own random number
    		// generator in addition to the random number we supply.
    		switch kdsa(functionCode+136, &params) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. releasenotes/notes/kiali-update-v1.55.1.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 16:50:39 UTC 2022
    - 140 bytes
    - Viewed (0)
Back to top