Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 94 for Parses (0.3 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Required
    	ClientConfig WebhookClientConfig `json:"clientConfig" protobuf:"bytes,2,opt,name=clientConfig"`
    
    	// Rules describes what operations on what resources/subresources the webhook cares about.
    	// The webhook cares about an operation if it matches _any_ Rule.
    	// However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    //	    (that are executed by other agents) or when customers pass requests through proxies, which may
    //	    modify the user-agent.
    //
    //	Authorization:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	}
    	for _, test := range execTests {
    		var tmpl *Template
    		var err error
    		if template == nil {
    			tmpl, err = New(test.name).Funcs(funcs).Parse(test.input)
    		} else {
    			tmpl, err = template.New(test.name).Funcs(funcs).Parse(test.input)
    		}
    		if err != nil {
    			t.Errorf("%s: parse error: %s", test.name, err)
    			continue
    		}
    		b.Reset()
    		err = tmpl.Execute(b, test.data)
    		switch {
    		case !test.ok && err == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	//
    	// Mirrors mspan.writeHeapBitsSmall.
    	//
    	// We should be using heapBits(), but unfortunately it introduces
    	// both bounds checks panics and throw which causes us to exceed
    	// the nosplit limit in quite a few cases.
    	i := (addr - span.base()) / goarch.PtrSize / ptrBits
    	j := (addr - span.base()) / goarch.PtrSize % ptrBits
    	bits := span.elemsize / goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    		ip, port, err := net.SplitHostPort(ep)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint", "endpoint", ep)
    			continue
    		}
    		portNum, err := strconv.Atoi(port)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint port", "port", port)
    			continue
    		}
    
    		newDest := &utilipvs.RealServer{
    			Address: netutils.ParseIPSloppy(ip),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Required
    	ClientConfig WebhookClientConfig `json:"clientConfig" protobuf:"bytes,2,opt,name=clientConfig"`
    
    	// Rules describes what operations on what resources/subresources the webhook cares about.
    	// The webhook cares about an operation if it matches _any_ Rule.
    	// However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	}
    	if d.linkctxt.LinkMode == LinkExternal && d.linkctxt.HeadType == objabi.Hwindows && d.linkctxt.BuildMode == BuildModeCArchive {
    		// gcc on Windows places .debug_gdb_scripts in the wrong location, which
    		// causes the program not to run. See https://golang.org/issue/20183
    		// Non c-archives can avoid this issue via a linker script
    		// (see fix near writeGDBLinkerScript).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

                                            const char* target);
    
    // Set the config in TF_SessionOptions.options.
    // config should be a serialized tensorflow.ConfigProto proto.
    // If config was not parsed successfully as a ConfigProto, record the
    // error information in *status.
    TF_CAPI_EXPORT extern void TF_SetConfig(TF_SessionOptions* options,
                                            const void* proto, size_t proto_len,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// Some driver responses missing?
    	if pendingDelayedClaims > 0 {
    		// We could start a pod scheduling attempt to refresh the
    		// potential nodes list.  But pod scheduling attempts are
    		// expensive and doing them too often causes the pod to enter
    		// backoff. Let's wait instead for all drivers to reply.
    		if loggerV := logger.V(6); loggerV.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    The type and classpath of nested inputs is tracked, too.
    This ensures that changes to the implementation of a nested input causes the build to be out of date.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top