Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 188 for valid (0.06 sec)

  1. src/net/http/client_test.go

    				return fmt.Errorf("#%d: got next method %q; want %q", i, got, want)
    			}
    			handlerc <- func(rw ResponseWriter, req *Request) {
    				// TODO: Check that the body is valid when we do 307 and 308 support
    			}
    			return nil
    		}
    
    		res, err := c.Do(req)
    		if err != nil {
    			t.Errorf("#%d: Response: %v", i, err)
    			continue
    		}
    
    		res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    	// in which case we need to ensure the sweeper still has enough headroom.
    	sweepDistMinTrigger atomic.Uint64
    
    	// triggered is the point at which the current GC cycle actually triggered.
    	// Only valid during the mark phase of a GC cycle, otherwise set to ^uint64(0).
    	//
    	// Updated while the world is stopped.
    	triggered uint64
    
    	// lastHeapGoal is the value of heapGoal at the moment the last GC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      //
      // An example of where this might occur is with a digraph:
      // {A -> B, B -> C, A -> X, X -> C} where B is a Size operation and X is
      // not-compilable. In this case, the valid clusterings are {A,B} or {B,C}. B
      // should be clustered with A because it will prevent a potentially large
      // tensor from A being computed and copied.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // MergingMapsHaveConflicts returns true if the left and right JSON interface
    // objects overlap with different values in any key. All keys are required to be
    // strings. Since patches of the same Type have congruent keys, this is valid
    // for multiple patch types. This method supports strategic merge patch semantics.
    func MergingMapsHaveConflicts(left, right map[string]interface{}, schema LookupPatchMeta) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kube-controller-manager removes deprecated command flags: --volume-host-cidr-denylist and --volum...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    // of a //go:cgo_import_dynamic pragma. These names come from object
    // files, so they may be corrupt. We are going to emit them unquoted,
    // so while they don't need to be valid symbol names (and in some cases,
    // involving symbol versions, they won't be) they must contain only
    // graphic characters and must not contain Go comments.
    func checkImportSymName(s string) {
    	for _, c := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/runtime/map.go

    	emptyRest      = 0 // this cell is empty, and there are no more non-empty cells at higher indexes or overflows.
    	emptyOne       = 1 // this cell is empty
    	evacuatedX     = 2 // key/elem is valid.  Entry has been evacuated to first half of larger table.
    	evacuatedY     = 3 // same as above, but evacuated to second half of larger table.
    	evacuatedEmpty = 4 // cell is empty, bucket is evacuated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	// A list of authorization policies applicable to this workload.
    	// NOTE: this *only* includes Selector based policies. Namespace and global polices
    	// are returned out of band.
    	// Authorization policies are only valid for workloads with `addresses` rather than `hostname`.
    	AuthorizationPolicies []string       `protobuf:"bytes,16,rep,name=authorization_policies,json=authorizationPolicies,proto3" json:"authorization_policies,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      Experiment.
    run_name: Can't contain ASCII control characters or <>. Case sensitive.
      If empty, then each Tag will not be associated with any Run.
    user_name: Must be valid as both a DNS label and Linux username. If
      empty, then the Experiment will not be associated with any User.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top