Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,080 for checkIn (0.15 sec)

  1. src/go/types/builtins.go

    		// (for use in Checker.isTerminating)
    		if check.sig != nil && check.sig.results.Len() > 0 {
    			// function has result parameters
    			p := check.isPanic
    			if p == nil {
    				// allocate lazily
    				p = make(map[*ast.CallExpr]bool)
    				check.isPanic = p
    			}
    			p[call] = true
    		}
    
    		check.assignment(x, &emptyInterface, "argument to panic")
    		if x.mode == invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    		},
    	}
    }
    
    func checkClustersReached(allClusters cluster.Clusters, clusters cluster.Clusters) echo.Checker {
    	return check.And(
    		check.OK(),
    		check.ReachedClusters(allClusters, clusters))
    }
    
    func checkDNSLookupFailed() echo.Checker {
    	return check.And(
    		check.Error(),
    		func(_ echo.CallResult, err error) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Equivalence.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.ForOverride;
    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A strategy for determining whether two instances are considered equivalent, and for computing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. hack/golangci.yaml

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AggregateFuture.java

    import java.util.Set;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.Future;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A future whose value is derived from a collection of input futures.
     *
     * @param <InputT> the type of the individual inputs
     * @param <OutputT> the type of the output (i.e. this) future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/issues0.go

    }
    
    // Check that constants representable as integers are in integer form
    // before being used in operations that are only defined on integers.
    func issue14229() {
    	// from the issue
    	const _ = int64(-1<<63) % 1e6
    
    	// related
    	const (
    		a int = 3
    		b = 4.0
    		_ = a / b
    		_ = a % b
    		_ = b / a
    		_ = b % a
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    			}
    			if field.Type == nil {
    				return nil
    			}
    			currentNode = field.Type
    		}
    	}
    	return &checker.SizeEstimate{Min: 0, Max: uint64(currentNode.MaxElements)}
    }
    
    func (c *sizeEstimator) EstimateCallCost(function, overloadID string, target *checker.AstNode, args []checker.AstNode) *checker.CallEstimate {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // of the type checker in which they are emitted in exactly one place. For
    // example, the type checker emits different error messages for "too many
    // arguments" and "too few arguments", but one can imagine an alternative type
    // checker where this check instead just emits a single "wrong number of
    // arguments", so these errors should have the same code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/Invokable.java

      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      public final boolean trySetAccessible() {
        // We can't call accessibleObject.trySetAccessible since that was added in Java 9 and this code
        // should work on Java 8. So we emulate it this way.
        try {
          accessibleObject.setAccessible(true);
          return true;
        } catch (Exception e) { // sneaky checked exception
          return false;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/builtins.go

    		// (for use in Checker.isTerminating)
    		if check.sig != nil && check.sig.results.Len() > 0 {
    			// function has result parameters
    			p := check.isPanic
    			if p == nil {
    				// allocate lazily
    				p = make(map[*syntax.CallExpr]bool)
    				check.isPanic = p
    			}
    			p[call] = true
    		}
    
    		check.assignment(x, &emptyInterface, "argument to panic")
    		if x.mode == invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top