Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 188 for ctan (0.08 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        def "has empty map as value by default"() {
            expect:
            assertValueIs([:])
        }
    
        def "can change value to empty map"() {
            when:
            property.set([a: 'b'])
            property.empty()
            then:
            assertValueIs([:])
        }
    
        def "can set value using empty map"() {
            when:
            property.set([:])
            then:
            assertValueIs([:])
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	//
    	// During the execution of d4, the panic stack is d4 -> d3, which
    	// is nested properly, and we'll treat frame 3 as resumable, because we
    	// can find d3. (And in fact frame 3 is resumable. If d4 recovers
    	// and frame 5 continues running, d3, d3 can recover and we'll
    	// resume execution in (returning from) frame 3.)
    	//
    	// During the execution of d2, however, the panic stack is d2 -> d3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// h.reclaimIndex), but increase the minimum latency of the
    	// operation.
    	//
    	// The time required to scan this many pages can vary a lot depending
    	// on how many spans are actually freed. Experimentally, it can
    	// scan for pages at ~300 GB/ms on a 2.6GHz Core i7, but can only
    	// free spans at ~32 MB/ms. Using 512 pages bounds this at
    	// roughly 100µs.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Variables contain definitions of variables that can be used in composition of other expressions.
      // Each variable is defined as a named CEL expression.
      // The variables defined here will be available under `variables` in other expressions of the policy
      // except MatchConditions because MatchConditions are evaluated before the rest of the policy.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/time/time.go

    // type [time.Time], not *time.Time.
    //
    // A Time value can be used by multiple goroutines simultaneously except
    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    func (pl *dynamicResources) isSchedulableAfterPodSchedulingContextChange(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    	// Deleted? That can happen because we ourselves delete the PodSchedulingContext while
    	// working on the pod. This can be ignored.
    	if oldObj != nil && newObj == nil {
    		logger.V(4).Info("PodSchedulingContext got deleted")
    		return framework.QueueSkip, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// This should be alignUp(max, pageSize) / pageSize but max can and will
    	// be ^uintptr(0), so we need to be very careful not to overflow here.
    	// Rather than use alignUp, calculate the number of pages rounded down
    	// first, then add back one if necessary.
    	maxPages := max / pageSize
    	if max%pageSize != 0 {
    		maxPages++
    	}
    
    	// Calculate the minimum number of pages we can scavenge.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Variables contain definitions of variables that can be used in composition of other expressions.
    	// Each variable is defined as a named CEL expression.
    	// The variables defined here will be available under `variables` in other expressions of the policy
    	// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. cmd/iam.go

    // policy for the STS credential. The policy mapping can be updated by the
    // administrator.
    //
    // - from `Subject.CommonName` field from the STS request for
    // AssumeRoleWithCertificate. In this case, the policy for the STS credential
    // has the same name as the value of this field.
    //
    // - from special JWT claim from STS request for AssumeRoleWithOIDC API (when
    // not using RoleARN). The claim value can be a string or a list and refers to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    #ifdef GOAMD64_v2
    DATA bad_cpu_msg<>+0x00(SB)/84, $"This program can only be run on AMD64 processors with v2 microarchitecture support.\n"
    #endif
    
    #ifdef GOAMD64_v3
    DATA bad_cpu_msg<>+0x00(SB)/84, $"This program can only be run on AMD64 processors with v3 microarchitecture support.\n"
    #endif
    
    #ifdef GOAMD64_v4
    DATA bad_cpu_msg<>+0x00(SB)/84, $"This program can only be run on AMD64 processors with v4 microarchitecture support.\n"
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top