Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 134 for nameslice (0.18 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

    #include "tensorflow/lite/toco/toco_tooling.h"
    #include "tensorflow/lite/toco/toco_types.h"
    #include "tensorflow/lite/toco/tooling_util.h"
    #include "tensorflow/lite/toco/types.pb.h"
    
    namespace tflite {
    
    void PopulateConversionLogHelper(const toco::ModelFlags& model_flags,
                                     toco::TocoFlags* toco_flags,
                                     const std::string& input_contents_txt,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    	"istio.io/istio/security/pkg/util"
    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    	Namespace        string
    	Authenticators   []security.Authenticator
    	CertSignerDomain string
    }
    
    // Based on istio_ca main - removing creation of Secrets with private keys in all namespaces and install complexity.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/destination_rule.go

    				addRuleToProcessedDestRules = false
    			}
    
    			// Deep copy destination rule, to prevent mutate it later when merge with a new one.
    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    			mdr.rule = &copied
    			mdr.from = append(mdr.from, destRuleConfig.NamespacedName())
    			mergedRule := copied.Spec.(*networking.DestinationRule)
    
    			existingSubset := sets.String{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/public/session_options.h"
    #include "tensorflow/core/util/debug_data_dumper.h"
    #include "tsl/platform/errors.h"
    
    namespace tensorflow {
    
    auto* mlir_function_pass_fallback_count = monitoring::Counter<1>::New(
        /* metric name */ "/tensorflow/core/mlir_function_pass_fallback_count",
        /* metric description */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    }
    
    func AddObjectMetaFieldsSet(source fields.Set, objectMeta *metav1.ObjectMeta, hasNamespaceField bool) fields.Set {
    	source["metadata.name"] = objectMeta.Name
    	if hasNamespaceField {
    		source["metadata.namespace"] = objectMeta.Namespace
    	}
    	return source
    }
    
    func checkStorageInvariants(ctx context.Context, t *testing.T, key string) {
    	// No-op function since cacher simply passes object creation to the underlying storage.
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    		{
    			"prometheus-namespace",
    			[]config.Config{newTelemetry("default", prometheus)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. association.go

    			var fieldValue reflect.Value
    			if clear {
    				fieldValue = reflect.MakeSlice(oldFieldValue.Type(), 0, oldFieldValue.Cap())
    			} else {
    				fieldValue = reflect.MakeSlice(oldFieldValue.Type(), oldFieldValue.Len(), oldFieldValue.Cap())
    				reflect.Copy(fieldValue, oldFieldValue)
    			}
    
    			appendToFieldValues := func(ev reflect.Value) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. pkg/security/security.go

    	SecretRotationGracePeriodRatio float64
    
    	// STS port
    	STSPort int
    
    	// credential fetcher.
    	CredFetcher CredFetcher
    
    	// credential identity provider
    	CredIdentityProvider string
    
    	// Namespace corresponding to workload
    	WorkloadNamespace string
    
    	// Name of the Service Account
    	ServiceAccount string
    
    	// XDS auth provider
    	XdsAuthProvider string
    
    	// Cert signer info
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. scan.go

    				} else {
    					// if the slice cap is externally initialized, the externally initialized slice is directly used here
    					if reflectValue.Cap() == 0 {
    						db.Statement.ReflectValue.Set(reflect.MakeSlice(reflectValue.Type(), 0, 20))
    					} else {
    						reflectValue.SetLen(0)
    						db.Statement.ReflectValue.Set(reflectValue)
    					}
    				}
    			}
    
    			for initialized || rows.Next() {
    			BEGIN:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin.go

    	if podNamespace == "" || podName == "" {
    		log.Debugf("Not a kubernetes pod")
    		return nil
    	}
    
    	for _, excludeNs := range conf.Kubernetes.ExcludeNamespaces {
    		if podNamespace == excludeNs {
    			log.Infof("pod namespace excluded")
    			return nil
    		}
    	}
    
    	// Begin ambient plugin logic
    	// For ambient pods, this is all the logic we need to run
    	if conf.AmbientEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top