Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for unpipe (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	// map entry encountered and does not indicate which map the index refers to.
    	var unknownField *cbor.UnknownFieldError
    	if errors.As(err, &unknownField) {
    		// Unlike JSON, there are no strict errors in CBOR for duplicate map keys. CBOR maps
    		// with duplicate keys are considered invalid according to the spec and are rejected
    		// entirely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection.go

    	AnalyzeController       = "istio-analyze-leader"
    	// GatewayDeploymentController controls translating Kubernetes Gateway objects into various derived
    	// resources (Service, Deployment, etc).
    	// Unlike other types which use ConfigMaps, we use a Lease here. This is because:
    	// * Others use configmap for backwards compatibility
    	// * This type is per-revision, so it is higher cost. Leases are cheaper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/go/types/mono.go

    	for again {
    		again = false
    
    		for i, edge := range check.mono.edges {
    			src := &check.mono.vertices[edge.src]
    			dst := &check.mono.vertices[edge.dst]
    
    			// N.B., we're looking for the greatest weight paths, unlike
    			// typical Bellman-Ford.
    			w := src.weight + edge.weight
    			if w <= dst.weight {
    				continue
    			}
    
    			dst.pre = i
    			dst.len = src.len + 1
    			if dst.len == len(check.mono.vertices) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. README.md

    The following commands show how to use the zip download:
    
        $ unzip fess-14.12.x.zip
        $ cd fess-14.12.x
        $ ./bin/fess
    
    For more details, see the [Installation Guide](https://fess.codelibs.org/14.12/install/index.html).
    
    ### Docker
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/mono.go

    	for again {
    		again = false
    
    		for i, edge := range check.mono.edges {
    			src := &check.mono.vertices[edge.src]
    			dst := &check.mono.vertices[edge.dst]
    
    			// N.B., we're looking for the greatest weight paths, unlike
    			// typical Bellman-Ford.
    			w := src.weight + edge.weight
    			if w <= dst.weight {
    				continue
    			}
    
    			dst.pre = i
    			dst.len = src.len + 1
    			if dst.len == len(check.mono.vertices) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/sync/poolqueue.go

    			slot = &d.vals[head&uint32(len(d.vals)-1)]
    			break
    		}
    	}
    
    	val := *(*any)(unsafe.Pointer(slot))
    	if val == dequeueNil(nil) {
    		val = nil
    	}
    	// Zero the slot. Unlike popTail, this isn't racing with
    	// pushHead, so we don't need to be careful here.
    	*slot = eface{}
    	return val, true
    }
    
    // popTail removes and returns the element at the tail of the queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/syscall/exec_unix.go

    	}
    	releaseForkLock()
    
    	// Read child error status from pipe.
    	Close(p[1])
    	for {
    		n, err = readlen(p[0], (*byte)(unsafe.Pointer(&err1)), int(unsafe.Sizeof(err1)))
    		if err != EINTR {
    			break
    		}
    	}
    	Close(p[0])
    	if err != nil || n != 0 {
    		if n == int(unsafe.Sizeof(err1)) {
    			err = Errno(err1)
    		}
    		if err == nil {
    			err = EPIPE
    		}
    
    		// Child failed; wait for it to exit, to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top