Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for iovecs (0.14 sec)

  1. src/cmd/go/internal/cfg/cfg.go

    	GONOPROXY, GONOPROXYChanged = EnvOrAndChanged("GONOPROXY", GOPRIVATE)
    	GONOSUMDB, GONOSUMDBChanged = EnvOrAndChanged("GONOSUMDB", GOPRIVATE)
    	GOINSECURE                  = Getenv("GOINSECURE")
    	GOVCS                       = Getenv("GOVCS")
    )
    
    // EnvOrAndChanged returns the environment variable value
    // and reports whether it differs from the default value.
    func EnvOrAndChanged(name, def string) (v string, changed bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. pkg/kube/inject/webhook.go

    	"istio.io/istio/pkg/util/sets"
    	iptablesconstants "istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    var (
    	runtimeScheme     = runtime.NewScheme()
    	codecs            = serializer.NewCodecFactory(runtimeScheme)
    	deserializer      = codecs.UniversalDeserializer()
    	jsonSerializer    = kjson.NewSerializerWithOptions(kjson.DefaultMetaFactory, runtimeScheme, runtimeScheme, kjson.SerializerOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/apiserver/pkg/storage/etcd3/testserver"
    	storagetesting "k8s.io/apiserver/pkg/storage/testing"
    	"k8s.io/apiserver/pkg/storage/value"
    )
    
    var scheme = runtime.NewScheme()
    var codecs = serializer.NewCodecFactory(scheme)
    
    const defaultTestPrefix = "test!"
    
    func init() {
    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      }
      if (!main_func_name) {
        return stablehlo_module.emitError()
               << "StableHLO module does not have an entry function";
      }
      return main_func_name;
    }
    
    // Moves functions from one module to another.
    // The moved functions are set to private.
    void MoveFunctions(SymbolTableCollection &symbol_tables, ModuleOp from,
                       ModuleOp to) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// stwStoppingTimeGC/Other are distributions of stop-the-world stopping
    	// latencies, defined as the time taken by stopTheWorldWithSema to get
    	// all Ps to stop. stwStoppingTimeGC covers all GC-related STWs,
    	// stwStoppingTimeOther covers the others.
    	stwStoppingTimeGC    timeHistogram
    	stwStoppingTimeOther timeHistogram
    
    	// stwTotalTimeGC/Other are distributions of stop-the-world total
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

     * 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 org.gradle.internal.serialize.codecs.core
    
    import org.gradle.api.Task
    import org.gradle.api.file.FileCollection
    import org.gradle.api.internal.GeneratedSubclasses
    import org.gradle.api.internal.TaskInputsInternal
    import org.gradle.api.internal.TaskInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	//   in this case, all KMS plugins are probed via this single endpoint
    	//   the endpoint is present even if there are no KMS plugins configured (it is a no-op then)
    	kmsReloadHealthCheckName = "kms-providers"
    )
    
    var codecs serializer.CodecFactory
    
    // this atomic bool allows us to swap enablement of the KMSv2KDF feature in tests
    // as the feature gate is now locked to true starting with v1.29
    // Note: it cannot be set by an end user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/config.go

    	versionedInformers clientgoinformers.SharedInformerFactory,
    	storageFactory *serverstorage.DefaultStorageFactory,
    	lastErr error,
    ) {
    	genericConfig = genericapiserver.NewConfig(legacyscheme.Codecs)
    	genericConfig.MergedResourceConfig = resourceConfig
    
    	if lastErr = s.GenericServerRunOptions.ApplyTo(genericConfig); lastErr != nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

     * 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 org.gradle.internal.serialize.codecs.dm
    
    import org.gradle.api.Action
    import org.gradle.api.artifacts.FileCollectionDependency
    import org.gradle.api.artifacts.component.ComponentIdentifier
    import org.gradle.api.artifacts.transform.TransformAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    TIP: For a hands-on approach to learning how to use the build cache, start with reading through the <<build_cache_use_cases.adoc#use_cases_cache,use cases for the build cache>> and the follow up sections.
    It covers the different scenarios that caching can improve and has detailed discussions of the different caveats you need to be aware of when enabling caching for a build.
    
    [[sec:build_cache_enable]]
    == Enable the Build Cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top