Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,017 for Avery (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    // Requests must match the rules of every field (an intersection of rules).
    type PolicyRule struct {
    	// The Level that requests matching this rule are recorded at.
    	Level Level `json:"level" protobuf:"bytes,1,opt,name=level,casttype=Level"`
    
    	// The users (by authenticated user name) this rule applies to.
    	// An empty list implies every user.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

              checkElementIndex(index, size());
              return rest[index - 2];
          }
        }
    
        @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the lists. For example:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                // Check if the value is a FB generated id (static 24 chars)
                if (obj instanceof NSString && (obj.getContent().length() == 24)) {
                    return obj.getContent().toCharArray().every {
                        Character.isDigit(it) || Character.isUpperCase(it)
                    }
                }
                return false
            }
    
            @Override
            String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Range.java

       *   <li>{@code (3..6]} does not enclose {@code [3..6]}
       *   <li>{@code [4..5]} does not enclose {@code (3..6)} (even though it contains every value
       *       contained by the latter range)
       *   <li>{@code [3..6]} does not enclose {@code (1..1]} (even though it contains every value
       *       contained by the latter range)
       * </ul>
       *
       * <p>Note that if {@code a.encloses(b)}, then {@code b.contains(v)} implies {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

            // Every property has exactly one of the following
            FINGERPRINTING_STRATEGY_ABSOLUTE_PATH,
            FINGERPRINTING_STRATEGY_NAME_ONLY,
            FINGERPRINTING_STRATEGY_RELATIVE_PATH,
            FINGERPRINTING_STRATEGY_IGNORED_PATH,
            FINGERPRINTING_STRATEGY_CLASSPATH,
            FINGERPRINTING_STRATEGY_COMPILE_CLASSPATH,
    
            // Every property has exactly one of the following
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/debug/gosym/pclntab.go

    			s := t.stringFrom(t.filetab, pos)
    			m[s] = pos
    			pos += uint32(len(s) + 1)
    		}
    	}
    	t.fileMap = m
    }
    
    // go12MapFiles adds to m a key for every file in the Go 1.2 LineTable.
    // Every key maps to obj. That's not a very interesting map, but it provides
    // a way for callers to obtain the list of files in the program.
    func (t *LineTable) go12MapFiles(m map[string]*Obj, obj *Obj) {
    	if !disableRecover {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
          # For every missing dependency, find the tests which directly depend on
          # it, and print that list for debugging. Not really clear if this is
          # helpful since the only examples I've seen are enormous.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    Keeping order in a very large graph can be a challenge.
    For example, what if the new version of a dependency ends up having its own dependency declarations in a different order than the previous version?
    
    With Maven, this could have unwanted impact on resolved versions.
    --
    
    [NOTE]
    ====
    https://ant.apache.org/ivy/[Apache Ivy] is a very flexible dependency management tool.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    - ‘*’ wildcard matching
    
    You can enable filtering either in the build script or via the `--tests` command-line option.
    Here’s an example of some filters that are applied every time the build runs:
    
    .Filter tests on every build
    ====
    include::sample[dir="snippets/swift/testFiltering/kotlin",files="build.gradle.kts[tags=test-filtering]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableCollection.java

     * of bugs and confusion.
     *
     * <h3>About <i>all</i> {@code Immutable-} collections</h3>
     *
     * <p>The remainder of this documentation applies to every public {@code Immutable-} type in this
     * package, whether it is a subtype of {@code ImmutableCollection} or not.
     *
     * <h4>Guarantees</h4>
     *
     * <p>Each makes the following guarantees:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top