Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 616 for injecting (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ssa/html.go

    	// For now, an awful hack: edit the html as it passes through
    	// our fingers, finding '<svg ' and injecting needed attributes after it.
    	err = d.copyUntil(w, buf, `<svg `)
    	if err != nil {
    		fmt.Printf("injecting attributes: %v\n", err)
    		return
    	}
    	fmt.Fprintf(w, ` id="%s" onload="makeDraggable(evt)" `, svgID)
    	io.Copy(w, buf)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>configurator</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
                The configurator type to use when injecting parameter values into this Mojo. The value is normally deduced
                from the Mojo's implementation language, but can be specified to allow a custom ComponentConfigurator
                implementation to be used.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/file/store.go

    		inner:   memory.MakeSkipValidation(schemas),
    		shas:    make(map[kubeResourceKey]resourceSha),
    		byFile:  make(map[string]map[kubeResourceKey]config.GroupVersionKind),
    	}
    }
    
    // SetDefaultNamespace enables injecting a default namespace for resources where none is already specified
    func (s *KubeSource) SetDefaultNamespace(defaultNs resource.Namespace) {
    	s.defaultNs = defaultNs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager->addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
    }
    
    // This is the later part of the conversion in isolation. This enables a caller
    // to resume the conversion after injecting more information in the middle of
    // it.
    void AddPostVariableFreezingTFToTFLConversionPasses(
        llvm::StringRef saved_model_dir, const toco::TocoFlags& toco_flags,
        const mlir::TFL::PassConfig& pass_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    At the moment, this is only possible via a plugin because you need to get a handle on the link:{javadocPath}/org/gradle/api/component/SoftwareComponentFactory.html[SoftwareComponentFactory] :
    
    .Injecting the software component factory
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top