Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for fairy (0.05 sec)

  1. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

        return countMap.size();
      }
    
      @Override
      public boolean isEmpty() {
        return countMap.isEmpty();
      }
    
      @Override
      Iterator<Entry<E>> entryIterator() {
        // AbstractIterator makes this fairly clean, but it doesn't support remove(). To support
        // remove(), we create an AbstractIterator, and then use ForwardingIterator to delegate to it.
        Iterator<Entry<E>> readOnlyIterator =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/compare.go

    		}
    
    		var and ir.Op
    		switch cmp {
    		case ir.OEQ:
    			and = ir.OANDAND
    		case ir.ONE:
    			and = ir.OOROR
    		default:
    			// Don't do byte-wise comparisons for <, <=, etc.
    			// They're fairly complicated.
    			// Length-only checks are ok, though.
    			maxRewriteLen = 0
    		}
    		if s := ir.StringVal(cs); len(s) <= maxRewriteLen {
    			if len(s) > 0 {
    				ncs = safeExpr(ncs, init)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    			mappingIds[m.ID] = m
    		} else {
    			mappings[m.ID] = m
    		}
    
    		// If this a main linux kernel mapping with a relocation symbol suffix
    		// ("[kernel.kallsyms]_text"), extract said suffix.
    		// It is fairly hacky to handle at this level, but the alternatives appear even worse.
    		const prefix = "[kernel.kallsyms]"
    		if strings.HasPrefix(m.File, prefix) {
    			m.KernelRelocationSymbol = m.File[len(prefix):]
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/runtime/mgcsweep.go

    			return
    		}
    		sweep.active.end(sl)
    	}
    
    	// Unfortunately we can't sweep the span ourselves. Somebody else
    	// got to it first. We don't have efficient means to wait, but that's
    	// OK, it will be swept fairly soon.
    	for {
    		spangen := atomic.Load(&s.sweepgen)
    		if spangen == sl.sweepGen || spangen == sl.sweepGen+3 {
    			break
    		}
    		osyield()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. pkg/kube/util.go

    // buffer on the max etcd size
    // (https://github.com/kubernetes/kubernetes/blob/0afa569499d480df4977568454a50790891860f5/staging/src/k8s.io/apiserver/pkg/server/config.go#L362).
    // We allow an additional 2x buffer, as it is still fairly cheap (6mb)
    const MaxRequestBodyBytes = int64(6 * 1024 * 1024)
    
    // HTTPConfigReader is reads an HTTP request, imposing size restrictions aligned with Kubernetes limits
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/internal/poll/fd_unix.go

    		return errClosing(fd.isFile)
    	}
    
    	// Unblock any I/O.  Once it all unblocks and returns,
    	// so that it cannot be referring to fd.sysfd anymore,
    	// the final decref will close fd.sysfd. This should happen
    	// fairly quickly, since all the I/O is non-blocking, and any
    	// attempts to block in the pollDesc will return errClosing(fd.isFile).
    	fd.pd.evict()
    
    	// The call to decref will call destroy if there are no other
    	// references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_test.cc

    #include "tensorflow/core/platform/test.h"
    
    // NOTE(allenl): These tests currently go through TFE_Execute and so are
    // integration testing rather than purely testing the parallel device. They
    // correspond fairly well to the implementation, but testing the C++ directly is
    // another option.
    
    namespace tensorflow {
    namespace parallel_device {
    
    using ::testing::HasSubstr;
    
    TEST(PARALLEL_DEVICE, TestBasicCPU) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

            ssi(ServiceInstances)
            swi(WorkloadInstances)
            se-->ssi
            swi-->ssi
            we-->swi
        end
        kwi-->ssi
        swi-->ksi
    ```
    
    For the most part this is fairly straight forward. However, we support `ServiceEntry` selecting `Pod`, and `Service` selecting `WorkloadEntry`, which leads to cross-controller communication.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/encoding/gob/doc.go

    	01	// add one to field number, yielding field 1
    	42	// encoding of signed "33" (0x42 = 66 = 33<<1); Point.y = 33
    	00	// end of structure
    
    The type encoding is long and fairly intricate but we send it only once.
    If p is transmitted a second time, the type is already known so the
    output will be just:
    
    	07 ff 82 01 2c 01 42 00
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/runtime/traceruntime.go

    	// the P just to get its attention (e.g. STW or sysmon retake) or we're trying to steal a P for
    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    	// fairly succinctly. In the former, we're a regular running goroutine and proc, if we have either.
    	// In the latter, we're a goroutine in a syscall.
    	goStatus := traceGoRunning
    	procStatus := traceProcRunning
    	if inSyscall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top