Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 361 for withZip (0.36 sec)

  1. pilot/pkg/xds/delta_test.go

    		newEndpointWithAccount("127.0.0.1", "hello-sa", "v1"))
    	// Wait until the above debounce, to ensure we can precisely check XDS responses without spurious pushes
    	s.EnsureSynced(t)
    
    	ads := s.ConnectDeltaADS().WithID("sidecar~127.0.0.1~test.default~default.svc.cluster.local")
    
    	// Initially we get everything
    	ads.Request(&discovery.DeltaDiscoveryRequest{
    		ResourceNamesSubscribe: []string{},
    	})
    	resp := ads.ExpectResponse()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

         *
         * This includes classifying its attributes into lists of compatible, incompatible, and absent attributes.  Each candidate
         * is assessed within the context of a resolution, but must not reference the assessor
         * that produced it, in order to remain configuration cache compatible - the assessor is not serializable.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// names are only unique within a namespace.
    	VolumeName string `json:"volumeName,omitempty" protobuf:"bytes,1,opt,name=volumeName"`
    	// volumeNamespace specifies the scope of the volume within StorageOS.  If no
    	// namespace is specified then the Pod's namespace will be used.  This allows the
    	// Kubernetes name scoping to be mirrored within StorageOS for tighter integration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

          return failure();
        }
        rewriter.modifyOpInPlace(f, [&] { f.setType(newType); });
    
        // Adjust the type of the return values callers of the function to
        // match the "func.return" within the function.
        //
        // So this would transform
        // func.func @f(...) -> ... {
        //     yield %x : foo
        // }
        // ...
        // func.call @f(...) -> bar
        //
        // to
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks_test.go

    		{"v" + minimumKubeletVersion.WithPatch(5).String(), minimumControlPlaneVersion.WithPatch(1).String(), false, false},                // kubelet is newer, but still within same major.minor as control plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        This op returns a scalar string tensor containing the restored variable name, which 
        is composed from `container_name` and `shared_name` from a `var_handle` and can be
        used as a key within the runtime, as well as a future for the tensor.
    
        The `tf.IfrtCall` kernel uses the output $array_key.
        Other ops executed by TFRT may make use of $tensor_future.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    //  - a valid mesh shape (rank 4 with positive dimensions)
    //  - `num_tasks` and `num_tpu_devices_per_task` must match the number of
    //    available TPU hosts and devices per host
    //  - device coordinates within the mesh shape
    //  - no duplicate device coordinates
    //  - number of device coordinates (in tuple 3) match number of availabe TPUs
    absl::StatusOr<xla::Array4D<TaskAndDevice>> ParseTopologyAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. src/go/ast/import.go

    	}
    	first := len(f.Comments)
    	last := -1
    	for i, g := range f.Comments {
    		if g.End() >= end {
    			break
    		}
    		// g.End() < end
    		if beg <= g.Pos() {
    			// comment is within the range [beg, end[ of import declarations
    			if i < first {
    				first = i
    			}
    			if i > last {
    				last = i
    			}
    		}
    	}
    
    	var comments []*CommentGroup
    	if last >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. common/scripts/setup_env.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -e
    
    # https://stackoverflow.com/questions/59895/how-can-i-get-the-source-directory-of-a-bash-script-from-within-the-script-itsel
    # Note: the normal way we use in other scripts in Istio do not work when `source`d, which is why we use this approach
    SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

      mlir::OpPrintingFlags flag{};
      flag.useLocalScope().elideLargeElementsAttrs().enableDebugInfo();
    
      // IR printing requires multithreading disabled.
      // Even if multithreading is already disabled, if we are executing within a
      // pass-manager,  disableMultithreading throws assertion fail. Below if
      // statement ensures that disableMultithreading will not be executed if
      // multithreading is already disabled.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top