Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for found$ (0.18 sec)

  1. src/unique/clone.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unique
    
    import (
    	"internal/abi"
    	"internal/stringslite"
    	"unsafe"
    )
    
    // clone makes a copy of value, and may update string values found in value
    // with a cloned version of those strings. The purpose of explicitly cloning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * is that a module cannot be found in a repository, independently of its version,
     * then it's enough to just look at the module id using {@link #getModuleId()}.
     * <p></p>
     * However, if you have to differentiate depending on the version number (for example,
     * some versions of a module are found in one repository, others in a different repository),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    func (f *fakePodStateProvider) IsPodTerminationRequested(uid types.UID) bool {
    	_, found := f.removed[uid]
    	return found
    }
    
    func (f *fakePodStateProvider) ShouldPodRuntimeBeRemoved(uid types.UID) bool {
    	_, found := f.terminated[uid]
    	return found
    }
    
    func (f *fakePodStateProvider) ShouldPodContentBeRemoved(uid types.UID) bool {
    	_, found := f.removed[uid]
    	return found
    }
    
    type fakePodPullingTimeRecorder struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/InsecureProtocolOption.java

        /**
         * Fail if a URL with an insecure protocol is found.
         *
         * Refuse to generate a Gradle build.
         */
        FAIL,
    
        /**
         * Emit a warning if a URL with an insecure protocol is found.
         *
         * The generated Gradle build will fail at runtime.
         */
        WARN,
    
        /**
         * Allow insecure protocols to be used when found.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

        }
    
        def "analyze bad code"() {
            badCode()
    
            expect:
            fails("check")
            failure.assertHasDescription("Execution failed for task ':codenarcTest'.")
            failure.assertThatCause(startsWith("CodeNarc rule violations were found. See the report at:"))
            failure.assertHasResolutions(SCAN)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

      @Test fun testInvalidParse() {
        assertInvalid("", "No subtype found for: \"\"")
        assertInvalid("/", "No subtype found for: \"/\"")
        assertInvalid("text", "No subtype found for: \"text\"")
        assertInvalid("text/", "No subtype found for: \"text/\"")
        assertInvalid("te<t/plain", "No subtype found for: \"te<t/plain\"")
        assertInvalid(" text/plain", "No subtype found for: \" text/plain\"")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildLookupIntegrationTest.groovy

            when:
            fails(buildA, "buildB:broken1")
    
            then:
            failure.assertHasCause("Included build 'buildA' not found in build 'buildB'.")
    
            when:
            fails(buildA, "buildB:broken2")
    
            then:
            failure.assertHasCause("Included build 'buildC' not found in build 'buildB'.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/time/tzdata_test.go

    		typ := v1.Type()
    		nf := typ.NumField()
    		found := 0
    		for i := 0; i < nf; i++ {
    			ft := typ.Field(i)
    			if ft.Name != "name" && ft.Name != "zone" {
    				continue
    			}
    			found++
    			if !equal(t, v1.Field(i), v2.Field(i)) {
    				t.Errorf("zone %s: system and embedded tzdata field %s differs", zone, ft.Name)
    			}
    		}
    		if found != 2 {
    			t.Errorf("test must be updated for change to time.Location struct")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/errsupport.go

    	// missing        x.foo   !=    foO    type X has no field or method foo
    
    	const (
    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    		inaccessible // found object with matching name but inaccessible from the current package
    	)
    
    	// determine case
    	e := missing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/strconv/makeisprint.go

    			return false
    		}
    		_, found := slices.BinarySearch(except, rr)
    		return !found
    	}
    
    	rr, rang, except := uint32(r), range32, except32
    	i, _ := slices.BinarySearch(rang, rr)
    	if i >= len(rang) || rr < rang[i&^1] || rang[i|1] < rr {
    		return false
    	}
    	_, found := slices.BinarySearch(except, rr)
    	return !found
    }
    
    func scan(min, max rune) (rang, except []uint32) {
    	lo := rune(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top