Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 2,372 for light (0.15 sec)

  1. src/fmt/format.go

    	}
    	*f.buf = buf[:newLen]
    }
    
    // pad appends b to f.buf, padded on left (!f.minus) or right (f.minus).
    func (f *fmt) pad(b []byte) {
    	if !f.widPresent || f.wid == 0 {
    		f.buf.write(b)
    		return
    	}
    	width := f.wid - utf8.RuneCount(b)
    	if !f.minus {
    		// left padding
    		f.writePadding(width)
    		f.buf.write(b)
    	} else {
    		// right padding
    		f.buf.write(b)
    		f.writePadding(width)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedLongs.java

        INSTANCE;
    
        @Override
        public int compare(long[] left, long[] right) {
          int minLength = Math.min(left.length, right.length);
          for (int i = 0; i < minLength; i++) {
            if (left[i] != right[i]) {
              return UnsignedLongs.compare(left[i], right[i]);
            }
          }
          return left.length - right.length;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/fixtures/IsolatedProjectsIdeSyncFixture.groovy

                spec.locationsWithProblems.any { expectedLocation ->
                    if (expectedLocation.left.matches(actualLocation.left)) {
                        expectedLocation.right == actualLocation.right
                    } else {
                        false
                    }
                }
            }
        }
    
        private Map<String, Object> readJsModelFromReport() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. docs/features/r8_proguard.md

    don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be
    interpreted by R8 automatically.
    
    If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might
    also need rules from [Okio][okio] which is a dependency of this library.
    
     [okhttp3_pro]: https://raw.githubusercontent.com/square/okhttp/master/okhttp/src/main/resources/META-INF/proguard/okhttp3.pro
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_util.cc

          // Other edges might have `dst` as dst node. Update those edges with
          // `replace_node`.
          for (int j = i + 1, end = data_edges.size(); j < end; j++) {
            if (data_edges[j].dst == dst) {
              data_edges[j].dst = replace_node;
            }
          }
    
          // Other placeholder node might have `dst` as original node. Update
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	// in-flight on the server now, and we will unblock them
    	// after ShutdownDelayDuration elapses.
    	inflightNonLongRunning.launch(doer, connReusingClient)
    	waitForeverUntil(t, inflightNonLongRunning.startedCh, "in-flight non long-running request did not reach the server")
    	inflightWatch.launch(doer, connReusingClient)
    	waitForeverUntil(t, inflightWatch.startedCh, "in-flight watch request did not reach the server")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMapGenerators.java

          return new Ordering<Entry<String, Integer>>() {
            @Override
            public int compare(Entry<String, Integer> left, Entry<String, Integer> right) {
              return left.getKey().compareTo(right.getKey());
            }
          }.sortedCopy(insertionOrder);
        }
    
        @Override
        public List<Entry<String, Integer>> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/function.cc

          }
        }
        return ::tensorflow::OkStatus();
      }
      return tensorflow::errors::Unimplemented(
          "Only functions with inputs/outputs containing a single tensor or a tuple"
          " of tensors are supported right now.");
    }
    
    Status VerifySupportedArgs(TaggedValue args) {
      if (args.type() == TaggedValue::Type::TENSOR) {
        return ::tensorflow::OkStatus();
      }
      if (args.type() == TaggedValue::Type::TUPLE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/runtime/profbuf.go

    // The entry begins with a fixed hdr, which must have
    // length b.hdrsize, followed by a variable-sized stack
    // and a single tag pointer *tagPtr (or nil if tagPtr is nil).
    // No write barriers allowed because this might be called from a signal handler.
    func (b *profBuf) write(tagPtr *unsafe.Pointer, now int64, hdr []uint64, stk []uintptr) {
    	if b == nil {
    		return
    	}
    	if len(hdr) > int(b.hdrsize) {
    		throw("misuse of profBuf.write")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/net/http/fcgi/child.go

    	case typeBeginRequest:
    		if req != nil {
    			// The server is trying to begin a request with the same ID
    			// as an in-progress request. This is an error.
    			return errors.New("fcgi: received ID that is already in-flight")
    		}
    
    		var br beginRequest
    		if err := br.read(rec.content()); err != nil {
    			return err
    		}
    		if br.role != roleResponder {
    			c.conn.writeEndRequest(rec.h.Id, 0, statusUnknownRole)
    			return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top