Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 165 for METHOD (0.18 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/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)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

        }
    
        def "null action is forbidden for #method"() {
            given:
            buildScript """
                task copy(type: Copy) {
                    into "out"
                    from 'src'
                    ${method} 'dest', null
                }
            """
    
            expect:
            fails 'copy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ### Different URLs should be different
     *
     * Although they have different content, `java.net.URL` considers the following two URLs
     * equal, and the [equals()][Object.equals] method between them returns true:
     *
     *  * https://example.net/
     *
     *  * https://example.com/
     *
     * This is because those two hosts share the same IP address. This is an old, bad design decision
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    	}
    
    	doc := p.leadComment
    	var idents []*ast.Ident
    	var typ ast.Expr
    	x := p.parseTypeName()
    	if ident, isIdent := x.(*ast.Ident); isIdent && p.tok == token.LPAREN {
    		// method
    		idents = []*ast.Ident{ident}
    		scope := ast.NewScope(nil) // method scope
    		params, results := p.parseSignature(scope)
    		typ = &ast.FuncType{token.NoPos, params, results}
    	} else {
    		// embedded interface
    		typ = x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top