Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for myname (0.08 sec)

  1. tensorflow/compiler/aot/test_google.cc

    void BM_NAME(benchmark::State& state) {
      Eigen::ThreadPool pool(port::MaxParallelism());
      Eigen::ThreadPoolDevice device(&pool, pool.NumThreads());
    
      CPP_CLASS computation;
      computation.set_thread_pool(&device);
      zero_buffers(&computation);
    
      for (auto s : state) {
        computation.Run();
      }
    }
    BENCHMARK(BM_NAME);
    
    }  // namespace
    }  // namespace tfcompile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    		for i := range c.Webhooks {
    			n := c.Webhooks[i].Name
    			uid := fmt.Sprintf("%s/%s/%d", c.Name, n, names[n])
    			names[n]++
    			configurationAccessor := m.createMutatingWebhookAccessor(uid, c.Name, &c.Webhooks[i])
    			configurationAccessors = append(configurationAccessors, configurationAccessor)
    		}
    		accessors = append(accessors, configurationAccessors...)
    		m.configurationsCache.Store(c.Name, configurationAccessors)
    	}
    	return accessors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. operator/pkg/name/name.go

    	s := string(n)
    	return ComponentName(strings.ToUpper(s[0:1]) + s[1:])
    }
    
    // UserFacingComponentName returns the name of the given component that should be displayed to the user in high
    // level CLIs (like progress log).
    func UserFacingComponentName(name ComponentName) string {
    	ret, ok := userFacingComponentNames[name]
    	if !ok {
    		return "Unknown"
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pkg/config/resource/name.go

    func (n FullName) Validate() error {
    	if len(n.Name) == 0 {
    		return fmt.Errorf("invalid name '%s': name must not be empty", n.String())
    	}
    	return nil
    }
    
    // NewFullName creates a new FullName from the given Namespace and Name.
    func NewFullName(ns Namespace, n LocalName) FullName {
    	return FullName{
    		Namespace: ns,
    		Name:      n,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 14 13:55:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/config/host/name.go

    // e.g.:
    //
    //	Name("foo.com").Matches("foo.com")   = true
    //	Name("foo.com").Matches("bar.com")   = false
    //	Name("*.com").Matches("foo.com")     = true
    //	Name("bar.com").Matches("*.com")     = true
    //	Name("*.foo.com").Matches("foo.com") = false
    //	Name("*").Matches("foo.com")         = true
    //	Name("*").Matches("*.com")           = true
    func (n Name) Matches(o Name) bool {
    	hWildcard := n.IsWildCarded()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name.go

    }
    
    // IsValidPathSegmentPrefix validates the name can be used as a prefix for a name which will be encoded as a path segment
    // It does not check for exact matches with disallowed names, since an arbitrary suffix might make the name valid
    func IsValidPathSegmentPrefix(name string) []string {
    	var errors []string
    	for _, illegalContent := range NameMayNotContain {
    		if strings.Contains(name, illegalContent) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 13:23:13 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/Name.java

        public String name, scope;
        public int hexCode;
        int srcHashCode; /* srcHashCode must be set by name resolution
                          * routines before entry into addressCache
                          */
    
        Name() {
        }
        public Name( String name, int hexCode, String scope ) {
            if( name.length() > 15 ) {
                name = name.substring( 0, 15 );
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/name.go

    )
    
    // NamePrinter is an implementation of ResourcePrinter which outputs "resource/name" pair of an object.
    type NamePrinter struct {
    	// ShortOutput indicates whether an operation should be
    	// printed along side the "resource/name" pair for an object.
    	ShortOutput bool
    	// Operation describes the name of the action that
    	// took place on an object, to be included in the
    	// finalized "successful" message.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 28 23:24:54 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                parallelizationMethod,
                subprojects.map { it.name }
            )
    
        override fun getName(testCoverage: TestCoverage) = truncateName("${testCoverage.asName()} (${subprojects.joinToString(",") { it.name }})")
    
        override fun getDescription(testCoverage: TestCoverage) = "${testCoverage.asName()} for ${subprojects.joinToString(", ") { it.name }}"
    
        fun toJsonBucket(): FunctionalTestBucket {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool `json:"externallyManaged"`
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    	CAName string `json:"caName,omitempty"`
    
    	// Missing represents if the certificate is missing.
    	Missing bool `json:"missing"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top