Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,257 for light (0.1 sec)

  1. guava/src/com/google/common/io/TempFileCreator.java

                    return acl;
                  }
                };
            return () -> attribute;
          } catch (IOException e) {
            // We throw a new exception each time so that the stack trace is right.
            return () -> {
              throw new IOException("Could not find user", e);
            };
          }
        }
    
        private static String getUsername() {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. src/log/slog/logger_test.go

    	check(`level=INFO msg=info a.i=1`)
    }
    
    func TestConnections(t *testing.T) {
    	var logbuf, slogbuf bytes.Buffer
    
    	// Revert any changes to the default logger. This is important because other
    	// tests might change the default logger using SetDefault. Also ensure we
    	// restore the default logger at the end of the test.
    	currentLogger := Default()
    	currentLogWriter := log.Writer()
    	currentLogFlags := log.Flags()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. pkg/util/iptree/iptree.go

    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    		// check we are in the right branch comparing the suffixes
    		if !n.prefix.Contains(address) {
    			return zeroT, false
    		}
    		// update the new bit position with the new node mask
    		bitPosition = n.prefix.Bits()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    Tree tree = new Tree(
                            left: new Tree([:]),
                            right: new Tree([:])
                        )
    
                    public static class Tree {
                        @Optional @Nested
                        Tree left
    
                        @Optional @Nested
                        Tree right
    
                        String nonAnnotated
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top