Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for METHOD (0.62 sec)

  1. src/crypto/x509/x509.go

    			aiaValues = append(aiaValues, authorityInfoAccess{
    				Method:   oidAuthorityInfoAccessOcsp,
    				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
    			})
    		}
    		for _, name := range template.IssuingCertificateURL {
    			aiaValues = append(aiaValues, authorityInfoAccess{
    				Method:   oidAuthorityInfoAccessIssuers,
    				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for this property cannot be changed any further.'
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
            def b = property()
            def c = elementProperty()
            def property = property()
            property.disallowUnsafeRead()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/time/time.go

    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	o := l.OuterSym(i)
    	if o == 0 {
    		return false
    	}
    	return l.SubSym(o) != 0
    }
    
    // Note that we don't have a 'SetAttrSubSymbol' method in the loader;
    // clients should instead use the AddInteriorSym method to establish
    // containment relationships for host object symbols.
    
    // Returns whether the i-th symbol has ReflectMethod attribute set.
    func (l *Loader) IsReflectMethod(i Sym) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    }
    
    // UpdatePodCIDR is just a passthrough method to update the runtimeConfig of the shim
    // with the podCIDR supplied by the kubelet.
    func (m *kubeGenericRuntimeManager) UpdatePodCIDR(ctx context.Context, podCIDR string) error {
    	// TODO(#35531): do we really want to write a method on this manager for each
    	// field of the config?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    	if len(plugins) > 0 {
    		logger := klog.FromContext(ctx)
    		verboseLogs := logger.V(4).Enabled()
    		if verboseLogs {
    			logger = klog.LoggerWithName(logger, "Score")
    		}
    		// Run Score method for each node in parallel.
    		f.Parallelizer().Until(ctx, len(nodes), func(index int) {
    			nodeName := nodes[index].Node().Name
    			logger := logger
    			if verboseLogs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		Description:    "The request signature we calculated does not match the signature you provided. Check your key and signing method.",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrMethodNotAllowed: {
    		Code:           "MethodNotAllowed",
    		Description:    "The specified method is not allowed against this resource.",
    		HTTPStatusCode: http.StatusMethodNotAllowed,
    	},
    	ErrInvalidPart: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            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()
            def b = property()
            def c = valueProperty()
            def property = property()
            property.disallowUnsafeRead()
    
    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. pilot/pkg/networking/core/route/route.go

    				SafeRegex: &matcher.RegexMatcher{
    					Regex: m.Regex,
    				},
    			}
    		}
    	}
    
    	out.CaseSensitive = &wrapperspb.BoolValue{Value: !in.IgnoreUriCase}
    
    	if in.Method != nil {
    		matcher := translateHeaderMatch(HeaderMethod, in.Method)
    		out.Headers = append(out.Headers, matcher)
    	}
    
    	if in.Authority != nil {
    		matcher := translateHeaderMatch(HeaderAuthority, in.Authority)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    }
    
    // findMatchedConfigs should filter out unrelated configs that are not matched given podsLabels.
    // When the config has no selector labels, this method will treat it as qualified namespace level
    // config. So configs passed into this method should only contains workload's namespaces configs
    // and rootNamespaces configs, caller should be responsible for controlling configs passed
    // in.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top