Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for holds (0.06 sec)

  1. cni/pkg/plugin/plugin.go

    	podRetrievalMaxRetries = 30
    	podRetrievalInterval   = 1 * time.Second
    )
    
    const (
    	ISTIOINIT  = "istio-init"
    	ISTIOPROXY = "istio-proxy"
    )
    
    // Kubernetes a K8s specific struct to hold config
    type Kubernetes struct {
    	Kubeconfig        string   `json:"kubeconfig"`
    	ExcludeNamespaces []string `json:"exclude_namespaces"`
    }
    
    // Config is whatever you expect your configuration json to be. This is whatever
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. internal/grid/muxclient.go

    		}
    		// Wait for senders to release.
    		m.respMu.Lock()
    	}
    
    	defer m.respMu.Unlock()
    	m.closeLocked()
    }
    
    func (m *muxClient) closeLocked() {
    	if m.closed {
    		return
    	}
    	// We hold the lock, so nobody can modify m.respWait while we're closing.
    	if m.respWait != nil {
    		xioutil.SafeClose(m.respWait)
    		m.respWait = nil
    	}
    	m.closed = true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/sync/map.go

    	// We need to be able to iterate over all of the keys that were already
    	// present at the start of the call to Range.
    	// If read.amended is false, then read.m satisfies that property without
    	// requiring us to hold m.mu for a long time.
    	read := m.loadReadOnly()
    	if read.amended {
    		// m.dirty contains keys not in read.m. Fortunately, Range is already O(N)
    		// (assuming the caller does not break out early), so a call to Range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. CREDITS

          License. However, in accepting such obligations, You may act only
          on Your own behalf and on Your sole responsibility, not on behalf
          of any other Contributor, and only if You agree to indemnify,
          defend, and hold each Contributor harmless for any liability
          incurred by, or claims asserted against, such Contributor by reason
          of your accepting any such warranty or additional liability.
    
       END OF TERMS AND CONDITIONS
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  5. cmd/erasure-multipart.go

    	if err != nil {
    		if errors.Is(err, errVolumeNotFound) {
    			return pi, toObjectErr(err, bucket)
    		}
    		return pi, toObjectErr(err, bucket, object, uploadID)
    	}
    
    	// Write lock for this part ID, only hold it if we are planning to read from the
    	// streamto avoid any concurrent updates.
    	//
    	// Must be held throughout this call.
    	partIDLock := er.NewNSLock(bucket, pathJoin(object, uploadID, strconv.Itoa(partID)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Create a pass that convert ops that copy tensors between devices, e.g.
    // tf.Identity.
    std::unique_ptr<OperationPass<mlir::func::FuncOp>>
    CreateTensorDeviceCopyConversionPass();
    
    // Returns a pass that folds tf.BroadcastTo nodes with subsequent nodes if they
    // have built in broadcasting support.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateBroadcastFoldPass();
    
    void populateTfControlFlowToScfPatterns(MLIRContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. internal/grid/connection.go

    	c.handleMessages(ctx, conn)
    	return nil
    }
    
    // reconnected signals the connection has been reconnected.
    // It will close all active requests and streams.
    // caller *must* hold reconnectMu.
    func (c *Connection) reconnected() {
    	c.updateState(StateConnectionError)
    	// Close all active requests.
    	if debugReqs {
    		fmt.Println(c.String(), "Reconnected. Clearing outgoing.")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            == createInstance(factory, args).hashCode();
      }
    
      // distinctValues is a type-safe class-values mapping, but we don't have a type-safe data
      // structure to hold the mappings.
      @SuppressWarnings({"unchecked", "rawtypes"})
      private FreshValueGenerator newFreshValueGenerator() {
        FreshValueGenerator generator =
            new FreshValueGenerator() {
              @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    }
    
    // MergedServers describes set of servers defined in all gateways per port.
    type MergedServers struct {
    	Servers   []*networking.Server
    	RouteName string // RouteName for http servers. For HTTPS, TLSServerInfo will hold the route name.
    }
    
    // TLSServerInfo contains additional information for TLS Servers.
    type TLSServerInfo struct {
    	RouteName string
    	SNIHosts  []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/time/format.go

    		}
    		if std == 0 {
    			if len(value) != 0 {
    				return Time{}, newParseError(alayout, avalue, "", value, ": extra text: "+quote(value))
    			}
    			break
    		}
    		layout = suffix
    		var p string
    		hold := value
    		switch std & stdMask {
    		case stdYear:
    			if len(value) < 2 {
    				err = errBad
    				break
    			}
    			p, value = value[0:2], value[2:]
    			year, err = atoi(p)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top