Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 368 for injecting (0.3 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // ratchetingValueValidator represents an invocation of SchemaValidator.ValidateUpdate
    // for specific arguments for `old` and `new`
    //
    // It follows the openapi SchemaValidator down its traversal of the new value
    // by injecting validate.Option into each recursive invocation.
    //
    // A ratchetingValueValidator will be constructed and added to the tree for
    // each explored sub-index and sub-property during validation.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::desc("Allow automatic pass through of TF ops (outside the flex "
                       "allowlist) as select Tensorflow ops"),
        llvm::cl::init(false));
    
    // The following approach allows injecting opdefs in addition
    // to those that are already part of the global TF registry  to be linked in
    // prior to importing the graph. The primary goal is for support of custom ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/framework/fake_plugins.go

    	atomic.AddInt32(&pl.NumFilterCalled, 1)
    
    	if returnCode, ok := pl.FailedNodeReturnCodeMap[nodeInfo.Node().Name]; ok {
    		return framework.NewStatus(returnCode, fmt.Sprintf("injecting failure for pod %v", pod.Name))
    	}
    
    	return nil
    }
    
    // NewFakeFilterPlugin initializes a fakeFilterPlugin and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            plugin.build()
            def buildSrcSrcDir = file("buildSrc/src/main/groovy/org/gradle/test")
    
            // these class names intentionally clash with what we are injecting
    
            buildSrcSrcDir.file("HelloWorldPlugin1.groovy") << """
                package org.gradle.test
    
                import org.gradle.api.Plugin
                import org.gradle.api.Project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         * create an {@link Action} from the given CLI args, and handles the logic for deciding whether or not to continue processing
         * based on whether the result is a {@link ContinuingAction} or not.  It allows for injecting alternate Creators which
         * won't actually attempt to run a build via the containing class' {@link #createBuildActionFactoryActionCreator(ServiceRegistry, List)}
         * method - this is why this class is not {@code static}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject.go

    		if err != nil {
    			return nil, nil, fmt.Errorf("failed applying injection overlay: %v", err)
    		}
    		// This is a bit of a weird hack. With NativeSidecars, the container will be under initContainers in the template pod.
    		// But we may have injection customizations (https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection);
    		// these will be in the `containers` field.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants.go

    	Kubeadm = "kubeadm"
    
    	// KubeCertificatesVolumeName specifies the name for the Volume that is used for injecting certificates to control plane components (can be both a hostPath volume or a projected, all-in-one volume)
    	KubeCertificatesVolumeName = "k8s-certs"
    
    	// KubeConfigVolumeName specifies the name for the Volume that is used for injecting the kubeconfig to talk securely to the api server for a control plane component if applicable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

                    default:
                        throw new IllegalArgumentException("Unexpected marker file: " + markerFile + " in instrumented buildscript classpath. " +
                            "Possible reason: Injecting custom artifact transform in between instrumentation stages is not supported.");
                }
            }
            Builder result = builderWithExactSize(transformedEntries.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. cni/pkg/iptables/iptables.go

    	// as we are running within a privileged container - and we don't want to take the time to
    	// redetect for each pod anyway.
    	//
    	// Extreme corner case:
    	// If for some reason your host had both binaries, and you were injecting out-of-band
    	// iptables rules within a pod context into `legacy` tables, but your host context preferred
    	// `nft`, we would still inject our rules in-pod into nft tables, which is a bit wonky.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_distributed_test.cc

    }
    
    string VariableAddFunctionWithGraphError() {
      string signature = VariableAddFunctionSignature();
      // Replace the node 'read0' with 'read0_maybe_with_graph_error', so that the
      // error injecting pass can identify and introduce graph pass errors.
      signature = std::regex_replace(signature, std::regex("read0"),
                                     "read0_maybe_with_graph_error");
      tensorflow::FunctionDef def;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top