Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for key0 (0.03 sec)

  1. src/cmd/compile/internal/types2/expr.go

    					check.expr(nil, x, kv.Value)
    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    						continue
    					}
    					i := fieldIndex(fields, check.pkg, key.Value, false)
    					if i < 0 {
    						var alt Object
    						if j := fieldIndex(fields, check.pkg, key.Value, true); j >= 0 {
    							alt = fields[j]
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. src/time/time.go

    //
    // Note that the Go == operator compares not just the time instant but also the
    // Location and the monotonic clock reading. Therefore, Time values should not
    // be used as map or database keys without first guaranteeing that the
    // identical Location has been set for all values, which can be achieved
    // through use of the UTC or Local method, and that the monotonic clock reading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        StrArrayAttr:$ancestors,
        TF_ShapeAttrArray:$shapes,
        OptionalAttr<SymbolRefAttr>:$shape_inference_graph,
        StrAttr:$key,
        DefaultValuedStrAttr<StrAttr, "">:$send_key,
        DefaultValuedStrAttr<StrAttr, "">:$recv_key,
        DefaultValuedOptionalAttr<I64Attr, "1000000">:$cost_estimate_ns,
        DefaultValuedOptionalAttr<I64Attr, "0">:$tpu_core
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124553](https://github.com/kubernetes/kubernetes/pull/124553), [@pmalek](https://github.com/pmalek)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	}
    }
    
    // stackContainsLabeled takes a spec like funcname;key=value and matches if the stack has that key
    // and value and has funcname somewhere in the stack.
    func stackContainsLabeled(spec string, count uintptr, stk []*profile.Location, labels map[string][]string) bool {
    	base, kv, ok := strings.Cut(spec, ";")
    	if !ok {
    		panic("no semicolon in key/value spec")
    	}
    	k, v, ok := strings.Cut(kv, "=")
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    			// TODO: Remove lookup by endpoint ID, and use the IP address only, so we don't need to maintain multiple keys for lookup.
    			if len(ep.hnsID) > 0 {
    				newHnsEndpoint = queriedEndpoints[ep.hnsID]
    			}
    
    			if newHnsEndpoint == nil {
    				// First check if an endpoint resource exists for this IP, on the current host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func shmget(key int, size int, flag int) (id int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_SHMGET<<4, uintptr(key), uintptr(size), uintptr(flag))
    	runtime.ExitSyscall()
    	id = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  8. cmd/peer-rest-server.go

    		if ev.S3.Bucket.Name != "" && values.Get(peerRESTListenBucket) != "" {
    			if ev.S3.Bucket.Name != values.Get(peerRESTListenBucket) {
    				return false
    			}
    		}
    		return rulesMap.MatchSimple(ev.EventName, ev.S3.Object.Key)
    	})
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    
    	// Process until remote disconnects.
    	// Blocks on upstream (out) congestion.
    	// We have however a dynamic downstream buffer (ch).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top