Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for Region (0.1 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    		for j := 0; j < nb; j++ {
    			nodes = append(nodes, &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: fmt.Sprintf("node-%d", i),
    					Labels: map[string]string{
    						v1.LabelTopologyRegion: fmt.Sprintf("region-%d", zone),
    						v1.LabelTopologyZone:   fmt.Sprintf("zone-%d", zone),
    					},
    				},
    			})
    			i++
    		}
    	}
    
    	var cache *cacheImpl
    	var snapshot *Snapshot
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. src/go/build/build.go

    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * comments.
         */
    
        @Weak final MapMakerInternalMap<K, V, E, S> map;
    
        /**
         * The number of live elements in this segment's region. This does not include unset elements
         * which are awaiting cleanup.
         */
        volatile int count;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	for v.Op == OpOffPtr || v.Op == OpAddPtr {
    		v = v.Args[0]
    	}
    	return v.Op == OpSP || v.Op == OpLocalAddr
    }
    
    // disjoint reports whether the memory region specified by [p1:p1+n1)
    // does not overlap with [p2:p2+n2).
    // A return value of false does not imply the regions overlap.
    func disjoint(p1 *Value, n1 int64, p2 *Value, n2 int64) bool {
    	if n1 == 0 || n2 == 0 {
    		return true
    	}
    	if p1 == p2 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * comments.
         */
    
        @Weak final MapMakerInternalMap<K, V, E, S> map;
    
        /**
         * The number of live elements in this segment's region. This does not include unset elements
         * which are awaiting cleanup.
         */
        volatile int count;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

                "userIdentity": {
                    "principalId": "AKIAIOSFODNN7EXAMPLE"
                },
                "requestParameters": {
                    "accessKey": "AKIAIOSFODNN7EXAMPLE",
                    "region": "",
                    "sourceIPAddress": "192.168.56.192"
                },
                "responseElements": {
                    "x-amz-request-id": "15C3249451E12784",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    // or the full list of endpoints for a service across registries, since it limits
    // scalability.
    //
    // Future optimizations will include grouping the endpoints by labels, gateway or region to
    // reduce the time when subsetting or split-horizon is used. This design assumes pilot
    // tracks all endpoints in the mesh and they fit in RAM - so limit is few M endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    // returns an array of substrings of s or an empty list if s contains only white space.
    // Single quotes and double quotes are recognized to prevent splitting within the
    // quoted region, and are removed from the resulting substrings. If a quote in s
    // isn't closed err will be set and r will have the unclosed argument as the
    // last element. The backslash is used for escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

            }
          }
        }
        auto it = simplified_ops.begin();
        while (it != simplified_ops.end()) {
          if (to_remove.contains(*it)) {
            it = simplified_ops.erase(it);
          } else {
            ++it;
          }
        }
        simplified_ops.insert(simplified_ops.end(), to_add.begin(), to_add.end());
      }
    
      // If all ops contain the same subop, then factor it out thanks to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

      int64_t feature_dim = GetTensorFeatureDimIndex(rank, format);
      llvm::SmallVector<int64_t, 4> dims_to_reduce(rank - 1);
      std::iota(dims_to_reduce.begin(), dims_to_reduce.begin() + feature_dim, 0);
      std::iota(dims_to_reduce.begin() + feature_dim, dims_to_reduce.end(),
                feature_dim + 1);
      return GetI64ElementsAttr(dims_to_reduce, builder);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top