Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for strnames (0.22 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. docs/changelogs/changelog_3x.md

     *  Fix: Don't crash when an HTTP/2 call is redirected while the connection is
        being shut down.
     *  Fix: Don't drop headers of healthy streams that raced with `GOAWAY` frames.
        This bug would cause HTTP/2 streams to occasional hang when the connection
        was shutting down.
     *  Fix: Honor `OkHttpClient.retryOnConnectionFailure()` when the response is a
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      }
    
      // If updating, make sure to update expected_children below.
      const std::vector<std::string> dirnames = {
          GetURIForPath("dir/a_dir"),
          GetURIForPath("dir/another_dir"),
      };
      for (const auto& dirname : dirnames) {
        status = env_->CreateDir(dirname);
        if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_amd64.go

    	55:  "no anode",
    	56:  "invalid request code",
    	57:  "invalid slot",
    	59:  "bad font file format",
    	60:  "device not a stream",
    	61:  "no data available",
    	62:  "timer expired",
    	63:  "out of streams resources",
    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/syscall/zerrors_linux_ppc64.go

    	57:  "invalid slot",
    	58:  "file locking deadlock error",
    	59:  "bad font file format",
    	60:  "device not a stream",
    	61:  "no data available",
    	62:  "timer expired",
    	63:  "out of streams resources",
    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
Back to top