Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for gots (0.05 sec)

  1. src/go/printer/testdata/parser.go

    func (p *parser) printTrace(a ...any) {
    	const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " +
    		". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    	const n = uint(len(dots))
    	pos := p.file.Position(p.pos)
    	fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)
    	i := 2 * p.indent
    	for ; i > n; i -= n {
    		fmt.Print(dots)
    	}
    	fmt.Print(dots[0:i])
    	fmt.Println(a...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// Releases all resources used by the filesystem
      ///
      /// NOTE: TensorFlow does not unload DSOs. Thus, the only way a filesystem
      /// won't be registered anymore is if this function gets called by core
      /// TensorFlow and the `TF_Filesystem*` object is destroyed. However, due to
      /// registration being done in a static instance of `Env`, the destructor of
      /// `FileSystem` is never called (see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// since then. heapLive ≤ memstats.totalAlloc-memstats.totalFree, since
    	// heapAlloc includes unmarked objects that have not yet been swept (and
    	// hence goes up as we allocate and down as we sweep) while heapLive
    	// excludes these objects (and hence only goes up between GCs).
    	//
    	// To reduce contention, this is updated only when obtaining a span
    	// from an mcentral and at this point it counts all of the unallocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    	if err := storageServerRequestValidate(r); err != nil {
    		s.writeErrorResponse(w, err)
    		return false
    	}
    	return true
    }
    
    // GetBandwidth gets the bandwidth for the buckets requested.
    func (s *peerRESTServer) GetBandwidth(params *grid.URLValues) (*bandwidth.BucketBandwidthReport, *grid.RemoteErr) {
    	buckets := params.Values().Get("buckets")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    							Label("hello", "world").
    							Obj()
    					},
    				},
    			},
    			want: want{
    				prebind: result{
    					status: framework.AsStatus(errors.New(`ResourceVersion must match the object that gets updated`)),
    				},
    			},
    		},
    		"delayed-allocation-scheduling-completed": {
    			// Remove PodSchedulingContext object once the pod is scheduled.
    			pod:         podWithClaimName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(rstStream.errorCode).isEqualTo(ErrorCode.CANCEL)
      }
    
      /**
       * When writing a set of headers fails due to an `IOException`, make sure the writer is left
       * in a consistent state so the next writer also gets an `IOException` also instead of
       * something worse (like an [IllegalStateException].
       *
       *
       * See https://github.com/square/okhttp/issues/1651
       */
      @Test fun socketExceptionWhileWritingHeaders() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. src/time/time.go

    // readings. If either t or u contains no monotonic clock reading, these
    // operations fall back to using the wall clock readings.
    //
    // On some systems the monotonic clock will stop if the computer goes to sleep.
    // On such a system, t.Sub(u) may not accurately reflect the actual
    // time that passed between t and u. The same applies to other functions and
    // methods that subtract times, such as [Since], [Until], [Before], [After],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      /** All waiting threads. */
      @CheckForNull private volatile Waiter waiters;
    
      /** Constructor for use by subclasses. */
      protected AbstractFuture() {}
    
      // Gets and Timed Gets
      //
      // * Be responsive to interruption
      // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on the
      //   waiters field.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      /** All waiting threads. */
      @CheckForNull private volatile Waiter waiters;
    
      /** Constructor for use by subclasses. */
      protected AbstractFuture() {}
    
      // Gets and Timed Gets
      //
      // * Be responsive to interruption
      // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on the
      //   waiters field.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. pkg/scheduler/internal/cache/cache_test.go

    	for i, expected := range expectedNodeInfoList {
    		got := snapshot.nodeInfoList[i]
    		if expected != got {
    			return fmt.Errorf("unexpected NodeInfo pointer in NodeInfoList. Expected: %p, got: %p", expected, got)
    		}
    	}
    
    	for i, expected := range expectedHavePodsWithAffinityNodeInfoList {
    		got := snapshot.havePodsWithAffinityNodeInfoList[i]
    		if expected != got {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top