Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for strnames (0.15 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    	for _, reason := range reasons {
    		switch reason {
    		case ErrReasonBindConflict:
    			varNames = append(varNames, "ErrReasonBindConflict")
    		case ErrReasonNodeConflict:
    			varNames = append(varNames, "ErrReasonNodeConflict")
    		case ErrReasonNotEnoughSpace:
    			varNames = append(varNames, "ErrReasonNotEnoughSpace")
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/os/os_test.go

    			dirNames, err := fd.Readdirnames(-1)
    			fd.Close()
    			if err != nil {
    				t.Fatalf("readdirnames: %s", err)
    			}
    
    			if dirNamesLen := len(dirNames); dirNamesLen != 1 {
    				t.Fatalf("unexpected dirNames len, got %q, want %q", dirNamesLen, 1)
    			}
    
    			if dirNames[0] != to {
    				t.Errorf("unexpected name, got %q, want %q", dirNames[0], to)
    			}
    		})
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	// ref from the element type to the pointer type -- it would be
    	// more efficient to do it this way as opposed to via name lookups.
    
    	ptrname := "*" + d.nameFromDIESym(dwtype)
    	if die := d.find(ptrname); die != 0 {
    		return die
    	}
    
    	pdie := d.newdie(&dwtypes, dwarf.DW_ABRV_PTRTYPE, ptrname)
    	d.newrefattr(pdie, dwarf.DW_AT_type, dwtype)
    
    	// The DWARF info synthesizes pointer types that don't exist at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <T extends @Nullable Object, K, V>
          Collector<T, ?, ImmutableSortedMap<K, V>> toImmutableSortedMap(
              Comparator<? super K> comparator,
              Function<? super T, ? extends K> keyFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

                  override fun contentLength(): Long = postBytes.size.toLong()
    
                  override fun writeTo(sink: BufferedSink) {
                    sink.write(postBytes) // push bytes into the stream's buffer
                    sink.flush() // Http2Connection.writeData subject to write window
                    sink.close() // Http2Connection.writeData empty frame
                  }
                },
            ),
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
      AssertionResult operator!() const;
    
      // Returns the text streamed into this AssertionResult. Test assertions
      // use it when they fail (i.e., the predicate's outcome doesn't match the
      // assertion's expectation). When nothing has been streamed into the
      // object, returns an empty string.
      const char* message() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #define GTEST_WIDE_STRING_USES_UTF16_ \
        (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX)
    
    // Determines whether test results can be streamed to a socket.
    #if GTEST_OS_LINUX
    # define GTEST_CAN_STREAM_RESULTS_ 1
    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <
              T extends @Nullable Object,
              K extends @Nullable Object,
              V extends @Nullable Object,
              M extends Multimap<K, V>>
          Collector<T, ?, M> toMultimap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	return f, nil
    }
    
    // setInstrumentedPlugins initializes instrumented plugins from current plugins that frameworkImpl has.
    func (f *frameworkImpl) setInstrumentedPlugins() {
    	// Cache metric streams for prefilter and filter plugins.
    	for i, pl := range f.preFilterPlugins {
    		f.preFilterPlugins[i] = &instrumentedPreFilterPlugin{
    			PreFilterPlugin: f.preFilterPlugins[i],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	f, err := os.Open(filepath.Join(testenv.GOROOT(t), "test", dir))
    	if err != nil {
    		t.Fatal(err)
    	}
    	dirnames, err := f.Readdirnames(-1)
    	f.Close()
    	if err != nil {
    		t.Fatal(err)
    	}
    	names := []string{}
    	for _, name := range dirnames {
    		if !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go") && shardMatch(name) {
    			names = append(names, name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top