Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 691 for checkSeq (0.17 sec)

  1. guava/src/com/google/common/base/Joiner.java

    import java.util.AbstractList;
    import java.util.Arrays;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a
     * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Streams.java

          } catch (Exception e) { // sneaky checked exception
            if (exception == null) {
              exception = e;
            } else {
              exception.addSuppressed(e);
            }
          }
        }
        if (exception != null) {
          // Normally this is a RuntimeException that doesn't need sneakyThrow.
          // But theoretically we could see sneaky checked exception
          sneakyThrow(exception);
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    )
    
    const maxTypesToCheck = 10
    
    type TypeChecker struct {
    	SchemaResolver resolver.SchemaResolver
    	RestMapper     meta.RESTMapper
    }
    
    // TypeCheckingContext holds information about the policy being type-checked.
    // The struct is opaque to the caller.
    type TypeCheckingContext struct {
    	gvks          []schema.GroupVersionKind
    	declTypes     []*apiservercel.DeclType
    	paramGVK      schema.GroupVersionKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/print/print.go

    // Error is variadic user-define Println-like function.
    // Calls to this func mustn't be checked for Println-like arguments,
    // since variadic arguments type isn't interface{}.
    func (ss *someStruct) Error(args ...func()) {}
    
    // Println is variadic user-defined Println-like function.
    // Calls to this func must be checked for Println-like arguments.
    func (ss *someStruct) Println(args ...interface{}) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/scope.go

    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() syntax.Pos { return s.pos }
    func (s *Scope) End() syntax.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/scope.go

    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() token.Pos { return s.pos }
    func (s *Scope) End() token.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    // The result is guaranteed to be valid only if the type-checked
    // AST has complete position information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. android/pom.xml

        <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
        <test.include>%regex[.*.class]</test.include>
        <truth.version>1.4.2</truth.version>
        <jsr305.version>3.0.2</jsr305.version>
        <checker.version>3.43.0</checker.version>
        <errorprone.version>2.28.0</errorprone.version>
        <j2objc.version>3.0.0</j2objc.version>
        <javac.version>9+181-r4173-1</javac.version>
        <!-- Empty for all JDKs but 9-12 -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pom.xml

        <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
        <test.include>%regex[.*.class]</test.include>
        <truth.version>1.4.2</truth.version>
        <jsr305.version>3.0.2</jsr305.version>
        <checker.version>3.43.0</checker.version>
        <errorprone.version>2.28.0</errorprone.version>
        <j2objc.version>3.0.0</j2objc.version>
        <javac.version>9+181-r4173-1</javac.version>
        <!-- Empty for all JDKs but 9-12 -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/internal/zstd/fse.go

    		}
    		baselineTable[i] = be
    	}
    	return nil
    }
    
    // predefinedLiteralTable is the predefined table to use for literal lengths.
    // Generated from table in RFC 3.1.1.3.2.2.1.
    // Checked by TestPredefinedTables.
    var predefinedLiteralTable = [...]fseBaselineEntry{
    	{0, 0, 4, 0}, {0, 0, 4, 16}, {1, 0, 5, 32},
    	{3, 0, 5, 0}, {4, 0, 5, 0}, {6, 0, 5, 0},
    	{7, 0, 5, 0}, {9, 0, 5, 0}, {10, 0, 5, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      StringAttr replication_attr = GetReplicationAttr(*forward_pass_ops.begin());
      llvm::SmallVector<Operation*> checkset(forward_pass_ops.getArrayRef());
      checkset.append(backward_pass_ops.begin(), backward_pass_ops.end());
      for (Operation* op : checkset) {
        if (op->getParentRegion() != region) {
          op->emitOpError() << "embedding ops in two different regions";
          return signalPassFailure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top