Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 149 for meaningful (0.22 sec)

  1. src/net/http/roundtrip_js.go

    	return n, nil
    }
    
    func (r *streamReader) Close() error {
    	// This ignores any error returned from cancel method. So far, I did not encounter any concrete
    	// situation where reporting the error is meaningful. Most users ignore error from resp.Body.Close().
    	// If there's a need to report error here, it can be implemented and tested when that need comes up.
    	r.stream.Call("cancel")
    	if r.err == nil {
    		r.err = errClosed
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	setTcPod(tc.changedPod, name, namespace, uid, "1", examplev1.SchemeGroupVersion.String(), &thirty, "")
    
    	// Someone else already changed it to 30.
    	// This should be fine since it's not a "meaningful conflict".
    	// Previously this was detected as a meaningful conflict because int64(30) != float64(30).
    	setTcPod(tc.updatePod, name, namespace, uid, "2", examplev1.SchemeGroupVersion.String(), &thirty, "anywhere")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/syscall/tables_js.go

    import "runtime"
    
    // These were originally used by Nacl, then later also used by
    // js/wasm. Now that they're only used by js/wasm, these numbers are
    // just arbitrary.
    //
    // TODO: delete? replace with something meaningful?
    const (
    	sys_null                 = 1
    	sys_nameservice          = 2
    	sys_dup                  = 8
    	sys_dup2                 = 9
    	sys_open                 = 10
    	sys_close                = 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/doc.go

    Example:
    
    	ADD $1, R3, R4		<=> 	addi r4, r3, 1
    
    3. Opcodes setting condition codes
    
    In PPC64 asm, some instructions other than compares have variations that can set
    the condition code where meaningful. This is indicated by adding '.' to the end
    of the PPC64 instruction. In Go asm, these instructions have 'CC' at the end of
    the opcode. The possible settings of the condition code depend on the instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/search/search.go

    		m.Dirs = []string{m.pattern}
    		return
    	}
    
    	// Clean the path and create a matching predicate.
    	// filepath.Clean removes "./" prefixes (and ".\" on Windows). We need to
    	// preserve these, since they are meaningful in MatchPattern and in
    	// returned import paths.
    	cleanPattern := filepath.Clean(m.pattern)
    	isLocal := strings.HasPrefix(m.pattern, "./") || (os.PathSeparator == '\\' && strings.HasPrefix(m.pattern, `.\`))
    	prefix := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	encryptedDEKSourceMaxSize = 1 * 1024 // 1 kB
    	// cacheTTL is the default time-to-live for the cache entry.
    	// this allows the cache to grow to an infinite size for up to a day.
    	// there is unlikely to be any meaningful memory impact on the server
    	// because the cache will likely never have more than a few thousand entries.
    	// each entry can be large due to an internal cache that maps the DEK seed to individual
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows.go

    //
    //go:linkname compileCallback syscall.compileCallback
    func compileCallback(fn eface, cdecl bool) (code uintptr) {
    	if GOARCH != "386" {
    		// cdecl is only meaningful on 386.
    		cdecl = false
    	}
    
    	if fn._type == nil || (fn._type.Kind_&abi.KindMask) != abi.Func {
    		panic("compileCallback: expected function with one uintptr-sized result")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

    func.func @if_else(%arg0: tensor<!tf_type.resource>, %arg1: tensor<!tf_type.resource>) -> tensor<!tf_type.resource> {
      func.return %arg1 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests that the pass returns meaningful error message when region based
    // control flow op has resource arguments.
    func.func @main() -> () {
      %size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *
     * <p>These are classes instead of interfaces to prevent external subtyping, but should be thought
     * of as interfaces in every important sense. Each public class such as {@link ImmutableSet} is a
     * <i>type</i> offering meaningful behavioral guarantees. This is substantially different from the
     * case of (say) {@link HashSet}, which is an <i>implementation</i>, with semantics that were
     * largely defined by its supertype.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top