Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 147 for _privates (0.51 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            )
        }
    
        private DefaultPublishArtifact artifact(String name) {
            artifact(name, "ext", "type", "classy")
        }
    
        private DefaultPublishArtifact artifact(String name, String extension, String type, String classifier) {
            return new DefaultPublishArtifact(name, extension, type, classifier, new Date(), new File(name))
        }
    
        private DefaultPublishArtifact artifact(Map props = [:]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

        private final @Nullable ListenableFuture<? extends T>[] inputFutures;
        private volatile int delegateIndex = 0;
    
        private InCompletionOrderState(ListenableFuture<? extends T>[] inputFutures) {
          this.inputFutures = inputFutures;
          incompleteOutputCount = new AtomicInteger(inputFutures.length);
        }
    
        private void recordOutputCancellation(boolean interruptIfRunning) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      // Flaky https://github.com/square/okhttp/issues/4633
      private val handshakeCertificates: HandshakeCertificates =
        platform.localhostHandshakeCertificates()
    
      private lateinit var server: MockWebServer
      private lateinit var protocol: Protocol
      private lateinit var client: OkHttpClient
      private val fileSystem: FakeFileSystem = FakeFileSystem()
      private val cache: Cache = Cache(fileSystem, "/tmp/cache".toPath(), Long.MAX_VALUE)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

        private static Logger log = LoggerFactory.getLogger(SmbFile.class);
    
        private long createTime;
        private long lastModified;
        private long lastAccess;
        private int attributes;
        private long attrExpiration;
        private long size;
        private long sizeExpiration;
        private boolean isExists;
    
        private CIFSContext transportContext;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/collect/Sets.java

        return cartesianProduct(Arrays.asList(sets));
      }
    
      private static final class CartesianSet<E> extends ForwardingCollection<List<E>>
          implements Set<List<E>> {
        private final transient ImmutableList<ImmutableSet<E>> axes;
        private final transient CartesianList<E> delegate;
    
        static <E> Set<List<E>> create(List<? extends Set<? extends E>> sets) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. tests/integration/security/authz_test.go

    							allow: true,
    						},
    						{
    							path:  "/private",
    							allow: false,
    						},
    						{
    							path:  "/public/../private",
    							allow: false,
    						},
    						{
    							path:  "/public/./../private",
    							allow: false,
    						},
    						{
    							path:  "/public/.././private",
    							allow: false,
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

        return cartesianProduct(Arrays.asList(sets));
      }
    
      private static final class CartesianSet<E> extends ForwardingCollection<List<E>>
          implements Set<List<E>> {
        private final transient ImmutableList<ImmutableSet<E>> axes;
        private final transient CartesianList<E> delegate;
    
        static <E> Set<List<E>> create(List<? extends Set<? extends E>> sets) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapsTest.java

      @GwtIncompatible // NullPointerTester
      public void testNullPointerExceptions() {
        new NullPointerTester().testAllPublicStaticMethods(Maps.class);
      }
    
      private static final Map<Integer, Integer> EMPTY = Collections.emptyMap();
      private static final Map<Integer, Integer> SINGLETON = Collections.singletonMap(1, 2);
    
      public void testMapDifferenceEmptyEmpty() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

    @PlexusTest
    class PomConstructionTest {
        private static String BASE_DIR = "src/test";
    
        private static String BASE_POM_DIR = BASE_DIR + "/resources-project-builder";
    
        private static String BASE_MIXIN_DIR = BASE_DIR + "/resources-mixins";
    
        @Inject
        private DefaultProjectBuilder projectBuilder;
    
        @Inject
        private MavenRepositorySystem repositorySystem;
    
        private File testDirectory;
    
        @BeforeEach
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    			// We only honor ., *
    			if ps.exportToDefaults.virtualService.Contains(visibility.Private) {
    				// add to local namespace only
    				private := ps.virtualServiceIndex.privateByNamespaceAndGateway
    				for _, gw := range gwNames {
    					n := types.NamespacedName{Namespace: ns, Name: gw}
    					private[n] = append(private[n], virtualService)
    				}
    			} else if ps.exportToDefaults.virtualService.Contains(visibility.Public) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top