Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 243 for hand (0.07 sec)

  1. src/cmd/cover/cover.go

    			if f.endsBasicSourceBlock(stmt) {
    				// If it is a labeled statement, we need to place a counter between
    				// the label and its statement because it may be the target of a goto
    				// and thus start a basic block. That is, given
    				//	foo: stmt
    				// we need to create
    				//	foo: ; stmt
    				// and mark the label as a block-terminating statement.
    				// The result will then be
    				//	foo: COUNTER[n]++; stmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// provisioning?  On the one hand, volume provisioning is currently
    	// irreversible, so it better should come last. On the other hand,
    	// triggering both in parallel might be faster.
    	return statusPending(logger, "waiting for resource driver to provide information", "pod", klog.KObj(pod))
    }
    
    // Unreserve clears the ReservedFor field for all claims.
    // It's idempotent, and does nothing if no state found for the given pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    And while both Maven and Gradle allow you to reference such jars by classifier, they are not mentioned at all in the metadata.
    Thus, there is no information that these jars exist and if there are any other differences, like different dependencies, between the variants represented by such jars.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

    EVICTION_PRESSURE_TRANSITION_PERIOD=${EVICTION_PRESSURE_TRANSITION_PERIOD:-"1m"}
    
    # This script uses docker0 (or whatever container bridge docker is currently using)
    # and we don't know the IP of the DNS pod to pass in as --cluster-dns.
    # To set this up by hand, set this flag and change DNS_SERVER_IP.
    # Note also that you need API_HOST (defined below) for correct DNS.
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

            is the location of a file that needs to exist, and if it doesn't, the profile will be
            activated. On the other hand, {@code exists} will test for the existence of the file and if it is
            there, the profile will be activated.
            <p>Variable interpolation for these file specifications is limited to {@code ${project.basedir}},
            system properties and user properties.&lt;/p></description>
          <fields>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // pkg locates the *loadPkg for path, creating and queuing it for loading if
    // needed, and updates its state to reflect the given flags.
    //
    // The imports of the returned *loadPkg will be loaded asynchronously in the
    // ld.work queue, and its test (if requested) will also be populated once
    // imports have been resolved. When ld.work goes idle, all transitive imports of
    // the requested package (and its test, if requested) will have been loaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// if sweepgen == h->sweepgen + 1, the span was cached before sweep began and is still cached, and needs sweeping
    	// if sweepgen == h->sweepgen + 3, the span was swept and then cached and is still cached
    	// h->sweepgen is incremented by 2 after every GC
    
    	sweepgen              uint32
    	divMul                uint32        // for divide by elemsize
    	allocCount            uint16        // number of allocated objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            and:
            result == "value"
    
            when:
            def result2 = property.get()
    
            then:
            0 * _
    
            and:
            result2 == [k1: "value"]
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  9. src/time/format.go

    // that insist on that format, and [RFC3339] should be preferred for new protocols.
    // [RFC3339], [RFC822], [RFC822Z], [RFC1123], and [RFC1123Z] are useful for formatting;
    // when used with time.Parse they do not accept all the time formats
    // permitted by the RFCs and they do accept time formats not formally defined.
    // The [RFC3339Nano] format removes trailing zeros from the seconds field
    // and thus may not sort correctly once formatted.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    }
    
    type gobuf struct {
    	// The offsets of sp, pc, and g are known to (hard-coded in) libmach.
    	//
    	// ctxt is unusual with respect to GC: it may be a
    	// heap-allocated funcval, so GC needs to track it, but it
    	// needs to be set and cleared from assembly, where it's
    	// difficult to have write barriers. However, ctxt is really a
    	// saved, live register, and we only ever exchange it between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top