Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 158 for Strip (0.71 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            return new Sample(testDirectoryProvider, "native-binaries/${name}/groovy", name)
        }
    
        @ToBeFixedForConfigurationCache
        def "exe"() {
            given:
            // Need to PATH to be set to find the 'strip' executable
            toolChain.initialiseEnvironment()
    
            and:
            sample cppExe
    
            when:
            run "installMain"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

            projectsIdentifiedEvents*.details.buildPath == configureOrder
    
            def dirs = configureOrder
                .collect { it.substring(1) } // strip leading :
                .collect { it.replaceAll(":", "/") }
                .collect { it ? file(it) : testDirectory }
                .collect { it.absolutePath }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

       * environment that forces Futures.getChecked to its fallback WeakSetValidator. One awful way of
       * doing so would be to derive a separate test library by using remove_from_jar to strip out
       * ClassValueValidator.
       *
       * Fortunately, we get pretty good coverage "by accident": We run all these tests against the
       * *backport*, where ClassValueValidator is not present.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

       * environment that forces Futures.getChecked to its fallback WeakSetValidator. One awful way of
       * doing so would be to derive a separate test library by using remove_from_jar to strip out
       * ClassValueValidator.
       *
       * Fortunately, we get pretty good coverage "by accident": We run all these tests against the
       * *backport*, where ClassValueValidator is not present.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/topology_hints.go

    		if device.Topology != nil && len(device.Topology.Nodes) > 0 {
    			return true
    		}
    	}
    	return false
    }
    
    func (m *ManagerImpl) getAvailableDevices(resource string) sets.Set[string] {
    	// Strip all devices in use from the list of healthy ones.
    	return m.healthyDevices[resource].Difference(m.allocatedDevices[resource])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.str != "" {
    		// Strip the variants and extensions.
    		b, s, r := t.Raw()
    		t = Tag{LangID: b, ScriptID: s, RegionID: r}
    		if t.RegionID == 0 && t.ScriptID != 0 && t.LangID != 0 {
    			base, _ := addTags(Tag{LangID: t.LangID})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

      }
    }
    
    /** Returns a [Locale.US] formatted [String]. */
    internal fun format(
      format: String,
      vararg args: Any,
    ): String {
      return String.format(Locale.US, format, *args)
    }
    
    /**
     * will also strip BOM from the source
     */
    @Throws(IOException::class)
    internal fun BufferedSource.readBomAsCharset(default: Charset): Charset {
      return when (select(UNICODE_BOMS)) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			j.APIVersion = ""
    			j.Kind = ""
    		},
    		func(j *runtime.Object, c fuzz.Continue) {
    			// TODO: uncomment when round trip starts from a versioned object
    			if true { //c.RandBool() {
    				*j = &runtime.Unknown{
    					// We do not set TypeMeta here because it is not carried through a round trip
    					Raw:         []byte(`{"apiVersion":"unknown.group/unknown","kind":"Something","someKey":"someValue"}`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	var latest string
    	for name := range uploaded {
    		if strings.HasSuffix(name, ".json") {
    			if name > latest {
    				latest = name
    			}
    		}
    	}
    	if latest == "" {
    		return ""
    	}
    	// strip off the .json
    	return latest[:len(latest)-len(".json")]
    }
    
    // notNeeded returns true if the report for date has already been created
    func notNeeded(date string, todo work) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. hack/make-rules/test.sh

        # coverage mode was used (set, count, or atomic). This line is included in
        # each of the coverage profiles generated when running 'go test -cover', but
        # we strip these lines out when combining so that there's only one.
        echo "mode: ${KUBE_COVERMODE}"
    
        # Include all coverage reach data in the combined profile, but exclude the
        # 'mode' lines, as there should be only one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top