Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for mean_t (0.19 sec)

  1. src/internal/trace/order.go

    		// the beginning of a generation, which involves taking a P back
    		// from every thread.
    		ms, ok := o.mStates[mid]
    		if ok {
    			// This M has been seen. That means we must have seen this
    			// goroutine go into a syscall on this thread at some point.
    			if ms.g != gid {
    				// But the G on the M doesn't match. Something's wrong.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            if (this is FirImplicitInvokeCall) {
    
                // If we have a PSI expression like `Foo.Bar.Baz()` and try to resolve `Bar` part,
                // and the only FIR that we have for that PSI is an implicit invoke call, that means that
                // `Foo.Bar` is definitely not a property access - otherwise it would have had its own FIR.
                // So, it does not make sense to try to resolve such parts of qualifiers as KaCall
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                String mKey = m.getGroupId() + ":" + m.getArtifactId() + ":" + m.getVersion();
                if (key.equals(mKey)) {
                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // Removes the unused resource arguments, and the return values that forward the
    // removed arguments. If old_to_new_arg_indices is provided, it will store the
    // new argument index that corresponds to each original index (-1 means it is
    // removed). If remaining_resource_data_types is provided, it will store the
    // data types of the remaining resource arguments, where the indices are after
    // removing unused ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	// value of the BasicConstraints' "pathLenConstraint".
    	//
    	// When parsing a certificate, a positive non-zero MaxPathLen
    	// means that the field was specified, -1 means it was unset,
    	// and MaxPathLenZero being true mean that the field was
    	// explicitly set to zero. The case of MaxPathLen==0 with MaxPathLenZero==false
    	// should be treated equivalent to -1 (unset).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	// The node is marked as timeout. The attach operation will always fail and return timeout error
    	// but the operation is actually succeeded.
    	TimeoutAttachNode = "timeout-attach-node"
    	// The node is marked as multi-attach which means it is allowed to attach the volume to multiple nodes.
    	MultiAttachNode = "multi-attach-node"
    	// TimeoutOnSetupVolumeName will cause Setup call to timeout but volume will finish mounting.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/runtime/map.go

    	loadFactorDen = 2
    	loadFactorNum = loadFactorDen * abi.MapBucketCount * 13 / 16
    
    	// data offset should be the size of the bmap struct, but needs to be
    	// aligned correctly. For amd64p32 this means 64-bit alignment
    	// even though pointers are 32 bit.
    	dataOffset = unsafe.Offsetof(struct {
    		b bmap
    		v int64
    	}{}.v)
    
    	// Possible tophash values. We reserve a few possibilities for special marks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    }
    
    // TunnelProtocol indicates the tunneling protocol for requests.
    type TunnelProtocol int32
    
    const (
    	// NONE means requests should be forwarded as-is, without tunneling.
    	TunnelProtocol_NONE TunnelProtocol = 0
    	// HBONE means requests should be tunneled over HTTP.
    	// This does not dictate HTTP/1.1 vs HTTP/2; ALPN should be used for that purpose.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    		proxier.onEndpointsMapChange(&svcPortName, false)
    	}
    
    	for svcPortName, eps := range newEndpointsMap {
    		logFormattedEndpoints("endpointsMapChange newEndpointsMap", logLevel, svcPortName, eps)
    		// redundantCleanup true means cleanup is called second time on the same svcPort
    		redundantCleanup := svcPortMap[svcPortName]
    		proxier.onEndpointsMapChange(&svcPortName, redundantCleanup)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    						if service.Attributes.ServiceRegistry != provider.Kubernetes && len(instances) == 0 && service.Attributes.LabelSelectors == nil {
    							// A Kubernetes service with no endpoints means there are no endpoints at
    							// all, so don't bother sending, as traffic will never work. If we did
    							// send a wildcard listener, we may get into a situation where a scale
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top