Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,443 for notC (0.41 sec)

  1. src/syscall/exec_linux.go

    // In the child, this function must not acquire any locks, because
    // they might have been locked at the time of the fork. This means
    // no rescheduling, no malloc calls, and no new stack segments.
    // For the same reason compiler does not race instrument it.
    // The calls to RawSyscall are okay because they are assembly
    // functions that do not grow the stack.
    //
    //go:norace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/runtime/iface.go

    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname convTslice
    func convTslice(val []byte) (x unsafe.Pointer) {
    	// Note: this must work for any element type, not just byte.
    	if (*slice)(unsafe.Pointer(&val)).array == nil {
    		x = unsafe.Pointer(&zeroVal[0])
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    	//   (assuming readerGen is not lagging behind). Note that we also want
    	//   to be careful *not* to schedule the reader if there's no work to do.
    	// - The trace is shutting down. The trace stopper blocks on the reader
    	//   to finish, much like trace advancement.
    	//
    	// We also want to be careful not to schedule the reader if there's no
    	// reason to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionBlockSchema.kt

    interface ConventionsTopLevelReceiver {
        @Configuring
        @AccessFromCurrentReceiverOnly
        fun conventions(conventions: ConventionsConfiguringBlock.() -> Unit)
    }
    
    
    /**
     * A receiver for the conventions block.  Note that this class is only used to provide a receiver for custom accessors
     * that expose the software types available in the build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

    package org.gradle.api.internal.artifacts;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * A node identifier that uniquely identifies a variant within a component by the variant's name.
     *
     * Note: Generally, variants should be identified by their attributes and capabilities, as the name
     * is more of a human-readable identifier.
     */
    public class ComponentVariantNodeIdentifier implements NodeIdentifier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/query-params-str-validations.md

    !!! note
        FastAPI will know that the value of `q` is not required because of the default value `= None`.
    
        The `Union` in `Union[str, None]` will allow your editor to give you better support and detect errors.
    
    ## Additional validation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    		if err := w.Close(); err != nil {
    			return err
    		}
    	}
    
    	// Cache package builds, but not binaries (link steps).
    	// The expectation is that binaries are not reused
    	// nearly as often as individual packages, and they're
    	// much larger, so the cache-footprint-to-utility ratio
    	// of binaries is much lower for binaries.
    	// Not caching the link step also makes sure that repeated "go run" at least
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

            # in Istio (see
            # https://istio.io/latest/docs/tasks/observability/distributed-tracing/lightstep/)
            # Note: this should probably be changed to use B3 or W3C TRACE_CONTEXT.
            # Lightstep recommends using B3 or TRACE_CONTEXT and most application
            # libraries from lightstep do not support x-ot-span-context.
            'x-ot-span-context',
    
            # Datadog tracing header. Propagate these headers if you use Datadog
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  9. manifests/charts/ztunnel/values.yaml

      # By default, it is istiod.istio-system.svc:15012 if revision is not set, or istiod-<revision>.<istioNamespace>.svc:15012
      xdsAddress: ""
    
      # Used to locate the XDS and CA, if caAddress or xdsAddress are not set.
      istioNamespace: istio-system
    
      # Configuration log level of ztunnel binary, default is info.
      # Valid values are: trace, debug, info, warn, error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/apis.go

    func ClearCounters() error {
    	cl := getCovCounterList()
    	if len(cl) == 0 {
    		return fmt.Errorf("program not built with -cover")
    	}
    	if cmode != coverage.CtrModeAtomic {
    		return fmt.Errorf("ClearCounters invoked for program built with -covermode=%s (please use -covermode=atomic)", cmode.String())
    	}
    
    	// Implementation note: this function would be faster and simpler
    	// if we could just zero out the entire counter array, but for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top