Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for distinguish (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    and Gradle internal implementation classes may suffer breaking changes (or be renamed or removed) from one version to another without warning.
    
    It is important for users to distinguish between the API and internal parts of the Gradle codebase.
    This is typically achieved by including `internal` in the implementation package names.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    }
    
    // Pseudo-Func that is returned for PCs that occur in inlined code.
    // A *Func can be either a *_func or a *funcinl, and they are distinguished
    // by the first uintptr.
    //
    // TODO(austin): Can we merge this with inlinedCall?
    type funcinl struct {
    	ones      uint32  // set to ^0 to distinguish from _func
    	entry     uintptr // entry of the real (the "outermost") frame
    	name      string
    	file      string
    	line      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	// The chains returned from servicePortChainNameBase and
    	// servicePortEndpointChainNameBase will always have at least one "/" in them.
    	// Since none of our "stock" chain names use slashes, we can distinguish them this
    	// way.
    	return strings.Contains(chainString, "/")
    }
    
    func isAffinitySetName(set string) bool {
    	return strings.HasPrefix(set, servicePortEndpointAffinityNamePrefix)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    				ReplicationDeleteMarker: dmVersionID != "",
    				ReplicationMTime:        srcObjInfo.ModTime,
    				ReplicationStatus:       miniogo.ReplicationStatusReplica,
    				ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    			},
    		})
    	}
    
    	if retry && !s3Type { // when we are retrying avoid copying if necessary.
    		gopts := miniogo.GetObjectOptions{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    and again invokes the system C compiler, to produce an object file
    containing debug information. Cgo parses the DWARF debug information
    for __cgo__N to learn the type of each identifier. (The types also
    distinguish functions from global variables.) Cgo reads the constant
    values from the __cgodebug_* from the object file's data segment.
    
    At this point cgo knows the meaning of each C.xxx well enough to start
    the translation process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // operations.
      if (!ModuleContainsTensorListOp(module)) return;
    
      // TensorFlow operations that doesn't have operands and results of type
      // variant are legal. Here, we don't distinguish between variants encoding
      // TensorList or some other type as that information is not available here.
      // Partial legalization is used below to still allow ops with variant types
      // still.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    // Next prepares the next result row for reading with the [Rows.Scan] method. It
    // returns true on success, or false if there is no next result row or an error
    // happened while preparing it. [Rows.Err] should be consulted to distinguish between
    // the two cases.
    //
    // Every call to [Rows.Scan], even the first one, must be preceded by a call to [Rows.Next].
    func (rs *Rows) Next() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	env []string // Environment variables to add, as KEY=VAL. KEY= unsets a variable
    
    	runOnHost bool // When cross-compiling, run this test on the host instead of guest
    
    	// variant, if non-empty, is a name used to distinguish different
    	// configurations of the same test package(s). If set and omitVariant is false,
    	// the Package field in test2json output is rewritten to pkg:variant.
    	variant string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// startContainer() returns well-defined error codes that have reasonable cardinality for metrics and are
    			// useful to cluster administrators to distinguish "server errors" from "user errors".
    			metrics.StartedContainersErrorsTotal.WithLabelValues(metricLabel, err.Error()).Inc()
    			if sc.HasWindowsHostProcessRequest(pod, spec.container) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    	MOVDU	R0, -8(R1)
    	MOVDU	R0, -8(R1)
    	BL	(CTR)
    	MOVD	24(R1), R2
    	BR	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top