Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 234 for myname (0.28 sec)

  1. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        testClasses: List<String>,
    ) : BaseGradleBuildType(stage = stage, init = {
    
        id("${model.projectId}_${docsTestType.docsTestName}_${os.asName()}_$index")
        name = "${docsTestType.docsTestDesc} - ${testJava.version.name.toCapitalized()} ${os.asName()} ($index)"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyTestDefaults(
            model,
            this,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

        // calls our constructor and it's not easy to pass arguments to it.
        private SortPolicy sortPolicy;
        public PBXGroup(String name, @Nullable String path, SourceTree sourceTree) {
            super(name, path, sourceTree);
    
            sortPolicy = SortPolicy.BY_NAME;
            children = new ArrayList<>();
    
            childGroupsByName = CacheBuilder.newBuilder().build(
                new CacheLoader<String, PBXGroup>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. 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)
  4. src/net/rpc/server.go

    const logRegisterError = false
    
    func (server *Server) register(rcvr any, name string, useName bool) error {
    	s := new(service)
    	s.typ = reflect.TypeOf(rcvr)
    	s.rcvr = reflect.ValueOf(rcvr)
    	sname := name
    	if !useName {
    		sname = reflect.Indirect(s.rcvr).Type().Name()
    	}
    	if sname == "" {
    		s := "rpc.Register: no service name for type " + s.typ.String()
    		log.Print(s)
    		return errors.New(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/cgo/internal/testcarchive/carchive_test.go

    func checkArchive(t *testing.T, arname string) {
    	t.Helper()
    
    	switch GOOS {
    	case "aix", "darwin", "ios", "windows":
    		// We don't have any checks for non-ELF libraries yet.
    		if _, err := os.Stat(arname); err != nil {
    			t.Errorf("archive %s does not exist: %v", arname, err)
    		}
    	default:
    		checkELFArchive(t, arname)
    	}
    }
    
    // checkELFArchive checks an ELF archive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top