Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for otherName (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceProvider.java

            String thisName = thisBuildServiceProvider.getName();
            String otherName = otherBuildServiceProvider.getName();
            if (!thisName.isEmpty() && !otherName.isEmpty() && !thisName.equals(otherName)) {
                return false;
            }
            if (!isCompatibleServiceType(thisBuildServiceProvider, otherBuildServiceProvider)) {
                return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tests/integration/pilot/istioctl_test.go

    					var output string
    					args := []string{"remote-clusters"}
    					output, _ = istioCtl.InvokeOrFail(t, args)
    					for _, otherName := range t.Clusters().Exclude(cluster).Names() {
    						if !strings.Contains(output, otherName) {
    							t.Fatalf("remote-clusters output did not contain %s; got:\n%s", otherName, output)
    						}
    					}
    				})
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        }
    
        def "does not select items when no matches"() {
            expect:
            doesNotMatch("name")
            doesNotMatch("name", "other")
            doesNotMatch("name", "na")
            doesNotMatch("sN", "otherName")
            doesNotMatch("sA", "someThing")
            doesNotMatch("soN", "saN")
            doesNotMatch("soN", "saName")
        }
    
        def "does not select items when multiple camel case matches"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

            )
          },
        )
    
      /**
       * Note that only a subset of available choices are implemented.
       *
       * ```
       * GeneralName ::= CHOICE {
       *   otherName                       [0]     OtherName,
       *   rfc822Name                      [1]     IA5String,
       *   dNSName                         [2]     IA5String,
       *   x400Address                     [3]     ORAddress,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            expect:
            bindings.getManagedProperty("name") != null
        }
    
        @Managed
        static interface SetterWithExtraParams {
            String getName()
            void setName(String name, String otherName)
        }
    
        def "setter with extra params"() {
            when: extract SetterWithExtraParams
            then: def ex = thrown InvalidManagedTypeException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        }
    
        private static boolean differenceIsSignificant(DataSeries<Duration> myTime, DataSeries<Duration> otherTime, double minConfidence) {
            return (myTime.median - otherTime.median).abs() > MINIMUM_DIFFERENCE_WE_CAN_MEASURE &&
                (relativeDifferenceInMedianIsVeryHigh(myTime, otherTime) || DataSeries.confidenceInDifference(myTime, otherTime) > minConfidence)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            def otherHome = executer.gradleUserHomeDir.parentFile.createDir('other-home')
            def otherCacheDir = otherHome.toPath().resolve(DefaultCacheScopeMapping.GLOBAL_CACHE_DIR_NAME)
            Files.createDirectory(otherCacheDir)
            Files.move(getMetadataCacheDir().toPath(), otherCacheDir.resolve(CacheLayout.MODULES.key))
            executer.withGradleUserHomeDir(otherHome)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	var allErrs field.ErrorList
    
    	if len(ephemeralContainers) == 0 {
    		return allErrs
    	}
    
    	otherNames, allNames := sets.Set[string]{}, sets.Set[string]{}
    	for _, c := range containers {
    		otherNames.Insert(c.Name)
    		allNames.Insert(c.Name)
    	}
    	for _, c := range initContainers {
    		otherNames.Insert(c.Name)
    		allNames.Insert(c.Name)
    	}
    
    	for i, ec := range ephemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top