Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 127 for subTable (0.34 sec)

  1. staging/src/k8s.io/api/admission/v1/types.go

    	// otherwise identical (parallel requests, requests when earlier requests did not modify etc)
    	// The UID is meant to track the round trip (request/response) between the KAS and the WebHook, not the user request.
    	// It is suitable for correlating log entries between the webhook and apiserver, for either auditing or debugging.
    	UID types.UID `json:"uid" protobuf:"bytes,1,opt,name=uid"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    	if proxyID != "" && con == nil {
    		// We can't guarantee the Pilot we are connected to has a connection to the proxy we requested
    		// There isn't a great way around this, but for debugging purposes its suitable to have the caller retry.
    		w.WriteHeader(http.StatusNotFound)
    		_, _ = w.Write([]byte("Proxy not connected to this Pilot instance. It may be connected to another instance.\n"))
    		return
    	}
    	if con == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      }
      *module_proto->mutable_input_output_alias() = config.ToProto();
      return absl::OkStatus();
    }
    
    bool failed(const absl::Status& status) { return !status.ok(); }
    
    // Transforms the given module to be suitable for export to TensorFlow GraphDef
    // and then exports all functions to the given library.
    Status PrepareAndExportToLibrary(mlir::ModuleOp module,
                                     FunctionLibraryDefinition* flib_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/Striped64.java

          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
       * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package. Replace with a simple call
       * to Unsafe.getUnsafe when integrating into a jdk.
       *
       * @return a sun.misc.Unsafe
       */
      private static sun.misc.Unsafe getUnsafe() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/Striped64.java

          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
       * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package. Replace with a simple call
       * to Unsafe.getUnsafe when integrating into a jdk.
       *
       * @return a sun.misc.Unsafe
       */
      private static sun.misc.Unsafe getUnsafe() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    		t.Errorf("Expected pod to be suitable for removal (deleted and terminated)")
    	}
    	if podWorkers.ShouldPodContentBeRemoved(types.UID("1")) {
    		t.Errorf("Expected pod to not be suitable for removal (terminated but not deleted)")
    	}
    	if podWorkers.ShouldPodContentBeRemoved(types.UID("2")) {
    		t.Errorf("Expected pod to not be suitable for removal (not terminated)")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    				}
    			}
    			// Can the builtin controller tell us whether the node is suitable?
    			if state.informationsForClaim[index].structuredParameters {
    				suitable, err := state.informationsForClaim[index].controller.nodeIsSuitable(ctx, node.Name, state.resources)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // For each op in the graph, get the resources it uses and update the access
      // information for them.
      graph_op.walk([&](IslandOp island) {
        // This pass assumes that all functions are suitable for export i.e., each
        // function has a single tf_executor.graph op and all islands wrap the
        // internal op perfectly. Hence this assertion should never fail.
        assert(island.WrapsSingleOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

            bind(PropertyCodec(propertyFactory, nestedCodec))
            bind(ProviderCodec(nestedCodec))
        }
    
        /**
         * Returns a Codec for Provider implementations suitable for all Provider implementations.
         */
        private
        fun nestedProviderCodec(
            valueSourceProviderFactory: ValueSourceProviderFactory,
            buildStateRegistry: BuildStateRegistry,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    Pods to Nodes. The scheduler determines which Nodes are valid placements for
    each Pod in the scheduling queue according to constraints and available
    resources. The scheduler then ranks each valid Node and binds the Pod to a
    suitable Node. Multiple different schedulers may be used within a cluster;
    kube-scheduler is the reference implementation.
    See [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top