Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,074 for ACCEPT (0.09 sec)

  1. pkg/util/iptables/testing/fake_test.go

    		:KUBE-RESTORED - [0:0]
    		:KUBE-MISC-CHAIN - [0:0]
    		:KUBE-MISC-TWO - [0:0]
    		:KUBE-EMPTY - [0:0]
    		-A KUBE-TEST -j ACCEPT
    		-A KUBE-RESTORED -m comment --comment "restored chain" -j ACCEPT
    		-A KUBE-MISC-CHAIN -s 1.2.3.4 -j KUBE-MISC-TWO
    		-A KUBE-MISC-CHAIN -d 5.6.7.8 -j MASQUERADE
    		-A KUBE-MISC-TWO -j ACCEPT
    		COMMIT
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		COMMIT
    		*mangle
    		COMMIT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

    public class SnapshotUtil {
    
        public static Map<String, FileSystemLocationSnapshot> indexByAbsolutePath(FileSystemSnapshot snapshot) {
            HashMap<String, FileSystemLocationSnapshot> index = new HashMap<>();
            snapshot.accept(entrySnapshot -> {
                index.put(entrySnapshot.getAbsolutePath(), entrySnapshot);
                return SnapshotVisitResult.CONTINUE;
            });
            return index;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/UnpackingVisitor.java

                // FileCollection is-a Iterable, Buildable and TaskDependencyContainer, so check before checking for these things
                visitor.accept((FileCollectionInternal) element);
                return;
            }
            if (element instanceof DirectoryTree) {
                visitor.accept(new FileTreeAdapter((MinimalFileTree) element, taskDependencyFactory, patternSetFactory));
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceHttpTest.kt

          "ResponseBodyEnd",
          "ConnectionReleased",
          "CallEnd",
        )
      }
    
      private fun newEventSource(accept: String? = null): EventSource {
        val builder =
          Request.Builder()
            .url(server.url("/"))
        if (accept != null) {
          builder.header("Accept", accept)
        }
        val request = builder.build()
        val factory = createFactory(client)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelector.java

         *
         * @param candidate the candidate version
         */
        boolean accept(String candidate);
    
        /**
         * Indicates if the selector matches the given candidate version.
         * Only called if {@link #requiresMetadata()} returned {@code false}.
         *
         * @param candidate the candidate version
         */
        boolean accept(Version candidate);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt

    /**
     * Transparent Brotli response support.
     *
     * Adds Accept-Encoding: br to request and checks (and strips) for Content-Encoding: br in
     * responses.  n.b. this replaces the transparent gzip compression in BridgeInterceptor.
     */
    object BrotliInterceptor : Interceptor {
      override fun intercept(chain: Interceptor.Chain): Response {
        return if (chain.request().header("Accept-Encoding") == null) {
          val request =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

            }
    
            @Override
            public boolean accept(String propertyName, ChangeVisitor visitor) {
                return inputFileChangesDelegate.accept(propertyName, visitor);
            }
    
            @Override
            public boolean accept(ChangeVisitor visitor) {
                return changeContainerDelegate.accept(visitor);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleContainer.groovy

                @Override
                void accept(OutputFrame outputFrame) {
                    super.accept(outputFrame)
                    println(outputFrame.utf8String)
                }
            }
            def stderrConsumer = new ToStringConsumer() {
                @Override
                void accept(OutputFrame outputFrame) {
                    super.accept(outputFrame)
                    System.err.println(outputFrame.utf8String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. samples/compare/src/test/kotlin/okhttp3/compare/OkHttpClientTest.kt

            .url(server.url("/"))
            .header("Accept", "text/plain")
            .build()
        val response = client.newCall(request).execute()
        assertThat(response.code).isEqualTo(200)
        assertThat(response.body.string()).isEqualTo("hello, OkHttp")
    
        val recorded = server.takeRequest()
        assertThat(recorded.headers["Accept"]).isEqualTo("text/plain")
        assertThat(recorded.headers["Accept-Encoding"]).isEqualTo("gzip")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessTest.groovy

            1 * initAction.requiresInitialization(sharedLock) >> false
    
            then:
            1 * onOpenAction.accept(sharedLock)
            0 * _
    
            when:
            cacheAccess.close()
    
            then:
            1 * onCloseAction.accept(sharedLock)
            1 * sharedLock.close()
            0 * _
        }
    
        def "releases lock when cache initialization fails"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top