Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for getNames (0.31 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            }
        }
    
        private static <T> T cache(ModelCache cache, Source source, ModelCacheTag<T> tag, Callable<T> supplier) {
            Supplier<T> s = asSupplier(supplier);
            if (cache == null) {
                return s.get();
            } else {
                return cache.computeIfAbsent(source, tag.getName(), s);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_EQ(TF_GraphGetFunctions(host_graph_, funcs, 2, s_), 2);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      if (GetName(funcs[0]) == GetName(func0)) {
        AssertEqual(func0, funcs[0]);
        AssertEqual(func1, funcs[1]);
      } else {
        AssertEqual(func0, funcs[1]);
        AssertEqual(func1, funcs[0]);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    ) {
    	if t.mockDecision == decisionSkipFilter {
    		panic("Handle should not be invoked")
    	}
    	noteFn(bootstrap.SuggestedFlowSchemaGlobalDefault, bootstrap.SuggestedPriorityLevelConfigurationGlobalDefault, requestDigest.User.GetName())
    	switch t.mockDecision {
    	case decisionNoQueuingExecute:
    		execFn()
    	case decisionQueuingExecute:
    		queueNoteFn(true)
    		t.postEnqueue()
    		queueNoteFn(false)
    		t.postDequeue()
    		execFn()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            } else {
                                first1 = false;
                            }
                            buf.append("{\"name\":");
                            buf.append(escapeJson(field.getName()));
                            buf.append(",\"result\":[");
                            boolean first2 = true;
                            for (final Map.Entry<String, Long> entry : field.getValueCountMap().entrySet()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // TODO(cpovirk): Presize to something plausible?
        StringBuilder builder = new StringBuilder();
        if (getClass().getName().startsWith("com.google.common.util.concurrent.")) {
          builder.append(getClass().getSimpleName());
        } else {
          builder.append(getClass().getName());
        }
        builder.append('@').append(toHexString(identityHashCode(this))).append("[status=");
        if (isCancelled()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // TODO(cpovirk): Presize to something plausible?
        StringBuilder builder = new StringBuilder();
        if (getClass().getName().startsWith("com.google.common.util.concurrent.")) {
          builder.append(getClass().getSimpleName());
        } else {
          builder.append(getClass().getName());
        }
        builder.append('@').append(toHexString(identityHashCode(this))).append("[status=");
        if (isCancelled()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. src/main/java/jcifs/smb/SmbFile.java

                return t;
            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public String getName () {
            return this.fileLocator.getName();
        }
    
    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	if len(meta.GetName()) != 0 {
    		name := meta.GetName()
    		allErrors = append(allErrors, apivalidation.ValidateQualifiedName(name+"/"+v.Key, fldPath.Child("key"))...)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    			pv := makeTestPV("test-pv", 10, test.driver, testVol)
    			pv.Spec.CSI.VolumeAttributes = test.volumeContext
    			pv.Spec.MountOptions = []string{"foo=bar", "baz=qux"}
    			pvName := pv.GetName()
    
    			mounter, err := plug.NewMounter(
    				volume.NewSpecFromPersistentVolume(pv, pv.Spec.PersistentVolumeSource.CSI.ReadOnly),
    				&corev1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history_test.go

    		}
    
    		if test.rename {
    			if created.Name == test.revision.Name {
    				t.Errorf("%s: wanted rename got %s %s", test.name, created.Name, test.revision.Name)
    			}
    			expectedName := ControllerRevisionName(test.parent.GetName(), HashControllerRevision(test.revision, &collisionCount))
    			if created.Name != expectedName {
    				t.Errorf("%s: on name collision wanted new name %s got %s", test.name, expectedName, created.Name)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top