Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 510 for necessarily (0.35 sec)

  1. tests/integration/pilot/ingress_test.go

    				}
    				os.WriteFile(d, []byte(fmt.Sprintf(`
    revision: %v
    gateways:
      istio-ingressgateway:
        name: custom-gateway-helm
        injectionTemplate: gateway
        type: ClusterIP # LoadBalancer is slow and not necessary for this tests
        autoscaleMax: 1
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
        labels:
          istio: custom-gateway-helm
    `, rev)), 0o644)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                }
    
                legacySupport.setSession(session);
    
                // NOTE: DuplicateArtifactAttachmentException is currently unchecked, so be careful removing this try/catch!
                // This is necessary to avoid creating compatibility problems for existing plugins that use
                // MavenProjectHelper.attachArtifact(..).
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    // in the value pointed to by v. If v is nil or not a pointer,
    // Unmarshal returns an [InvalidUnmarshalError].
    //
    // Unmarshal uses the inverse of the encodings that
    // [Marshal] uses, allocating maps, slices, and pointers as necessary,
    // with the following additional rules:
    //
    // To unmarshal JSON into a pointer, Unmarshal first handles the case of
    // the JSON being the JSON literal null. In that case, Unmarshal sets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         *
         * <p>The wrapper downloads a certain distribution only once and caches it. If your distribution base is the
         * project, you might submit the distribution to your version control system. That way no download is necessary at
         * all. This might be in particular interesting, if you provide a custom gradle snapshot to the wrapper, because you
         * don't need to provide a download server then.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedLongs.java

        // Optimization - use signed division if dividend < 2^63
        if (dividend >= 0) {
          return dividend / divisor;
        }
    
        /*
         * Otherwise, approximate the quotient, check, and correct if necessary. Our approximation is
         * guaranteed to be either exact or one less than the correct value. This follows from fact that
         * floor(floor(x)/i) == floor(x/i) for any real x and integer i != 0. The proof is not quite
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. pkg/controller/daemon/update.go

    		return fmt.Errorf("couldn't get unavailable numbers: %v", err)
    	}
    
    	now := dsc.failedPodsBackoff.Clock.Now()
    
    	// When not surging, we delete just enough pods to stay under the maxUnavailable limit, if any
    	// are necessary, and let the core loop create new instances on those nodes.
    	//
    	// Assumptions:
    	// * Expect manage loop to allow no more than one pod per node
    	// * Expect manage loop will create new pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getModule("gradle-instrumentation-declarations").getAllRequiredModulesClasspath());
                return classpath;
            }
    
            // Just the minimal stuff necessary for the worker infrastructure
            if (name.equals("MINIMUM_WORKER_RUNTIME")) {
                ClassPath classpath = ClassPath.EMPTY;
                for (String module : RUNTIME_MODULES) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

          int64_t num_updates = indices_type.getDimSize(0);
          // For TF::TensorScatterUpdateOp, `indices` must have at least 2 axes:
          // `(num_updates, index_depth)`. Reshape indices and updates if necessary.
          if (std::is_same<TfOp, TF::TensorScatterUpdateOp>::value &&
              indices_type.getRank() == 1 && updates_type.getRank() == 1 &&
              index_depth == 1 && num_updates == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

          return failure();
    
      return success();
    }
    
    }  // namespace
    
    // Populates a TPUCompileMetadataProto from attributes of a
    // `tf_device::ClusterFuncOp`. If any necessary attributes are missing from the
    // op, a failure will be returned.
    // TODO(lyandy): Support session handle and guaranteed consts.
    LogicalResult SetMetadataProtoFromClusterFuncOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/server.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package app does all of the work necessary to create a Kubernetes
    // APIServer by binding together the API, master and APIServer infrastructure.
    // It can be configured and called directly or via the hyperkube framework.
    package app
    
    import (
    	"context"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top