Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 401 for satisfies (0.25 sec)

  1. src/log/syslog/syslog.go

    // Solaris support as implemented by gccgo. On Solaris you cannot
    // simply open a TCP connection to the syslog daemon. The gccgo
    // sources have a syslog_solaris.go file that implements unixSyslog to
    // return a type that satisfies this interface and simply calls the C
    // library syslog function.
    type serverConn interface {
    	writeString(p Priority, hostname, tag, s, nl string) error
    	close() error
    }
    
    type netConn struct {
    	local bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// to avoid unnecessary recomputation.
    	ReadFile func(filename string) ([]byte, error)
    
    	// -- facts --
    
    	// ImportObjectFact retrieves a fact associated with obj.
    	// Given a value ptr of type *T, where *T satisfies Fact,
    	// ImportObjectFact copies the value to *ptr.
    	//
    	// ImportObjectFact panics if called after the pass is complete.
    	// ImportObjectFact is not concurrency-safe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/node.go

    	etcdUpgrade           bool
    	renewCerts            bool
    	dryRun                bool
    	patchesDir            string
    	ignorePreflightErrors []string
    }
    
    // compile-time assert that the local data object satisfies the phases data interface.
    var _ phases.Data = &nodeData{}
    
    // nodeData defines all the runtime information used when running the kubeadm upgrade node workflow;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

      }
    
      // Return the signature of the op.
      KernelSpecs::Signature GetSignature(quantfork::QuantizeRegionOp op);
    
      // A heuristic to get quantization parameters satisfies the same scale
      // constraints:
      // - If there are immutable states,
      //   - use the single input, or,
      //   - use the single output, or,
      //   - use the first one in the collection,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/FluentIterable.java

       * Returns {@code true} if any element in this fluent iterable satisfies the predicate.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#anyMatch} (same).
       */
      public final boolean anyMatch(Predicate<? super E> predicate) {
        return Iterables.any(getDelegate(), predicate);
      }
    
      /**
       * Returns {@code true} if every element in this fluent iterable satisfies the predicate. If this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/FluentIterable.java

       * Returns {@code true} if any element in this fluent iterable satisfies the predicate.
       *
       * <p><b>{@code Stream} equivalent:</b> {@link Stream#anyMatch} (same).
       */
      public final boolean anyMatch(Predicate<? super E> predicate) {
        return Iterables.any(getDelegate(), predicate);
      }
    
      /**
       * Returns {@code true} if every element in this fluent iterable satisfies the predicate. If this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

        }
    
        protected boolean canUseCurrentProcess(DaemonParameters daemonParameters, DaemonRequestContext requestContext) {
            // Pretend like the current process is actually a daemon, and see if it satisfies the compatibility spec
            CurrentProcess currentProcess = new CurrentProcess(fileCollectionFactory);
            DaemonContext contextForCurrentProcess = buildDaemonContextForCurrentProcess(requestContext, currentProcess);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/controlplane/reconcilers/lease_test.go

    				makeEndpointSlice("foo", []string{"1.2.3.4"}, []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}}),
    			},
    			expectLeases: []string{"1.2.3.4"},
    		},
    		{
    			testName:      "existing endpointslice satisfies, no endpoints",
    			serviceName:   "foo",
    			ip:            "1.2.3.4",
    			endpointPorts: []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}},
    			initialState: []runtime.Object{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  9. src/net/ipsock.go

    		want6 = bytealg.CountString(addr, '[') > 0
    	}
    	if want6 {
    		return addrs.first(isNotIPv4)
    	}
    	return addrs.first(isIPv4)
    }
    
    // first returns the first address which satisfies strategy, or if
    // none do, then the first address of any kind.
    func (addrs addrList) first(strategy func(Addr) bool) Addr {
    	for _, addr := range addrs {
    		if strategy(addr) {
    			return addr
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pkg/util/async/bounded_frequency_runner.go

    	retry     chan struct{} // schedule a retry
    	retryMu   sync.Mutex    // guards retryTime
    	retryTime time.Time     // when to retry
    }
    
    // designed so that flowcontrol.RateLimiter satisfies
    type rateLimiter interface {
    	TryAccept() bool
    	Stop()
    }
    
    type nullLimiter struct{}
    
    func (nullLimiter) TryAccept() bool {
    	return true
    }
    
    func (nullLimiter) Stop() {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
Back to top