Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 101 for Parses (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Each time a ZIP, TAR, JAR, WAR or EAR is built from source, the order of the files inside the archive may change.
    Files that only have a different timestamp also causes differences in archives from build to build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== XML parsing now requires recent parsers
    
    Gradle 8.4 now configures XML parsers with security features enabled.
    If your build logic has dependencies on old XML parsers that don't support secure parsing, your build may now fail.
    If you encounter a failure, check and update or remove any dependency on legacy XML parsers.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    					// be plain blocks, so check edge pb->pb.Preds instead of edge pb->b.
    					// TODO: improve the prediction of the likely predecessor. The following
    					// method is only suitable for the simplest cases. For complex cases,
    					// the prediction may be inaccurate, but this does not affect the
    					// correctness of the program.
    					// According to the layout algorithm, the predecessor with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top