Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 989 for chain (0.25 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PlatformToolProvider.java

        String getExecutableName(String executablePath);
    
        String getSharedLibraryName(String libraryPath);
    
        /**
         * Does this tool chain produce an import library when linking a shared library?
         */
        boolean producesImportLibrary();
    
        /**
         * Whether or not this tool chain requires a debuggable binary to be stripped or whether the binary is stripped by default.
         */
        boolean requiresDebugBinaryStripping();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt

        val chain = newChain(call)
        return RealRoutePlanner(
          taskRunner = client.taskRunner,
          connectionPool = client.connectionPool.delegate,
          readTimeoutMillis = client.readTimeoutMillis,
          writeTimeoutMillis = client.writeTimeoutMillis,
          socketConnectTimeoutMillis = chain.connectTimeoutMillis,
          socketReadTimeoutMillis = chain.readTimeoutMillis,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/testing/util.go

    type ExpectedRealServer struct {
    	IP   string
    	Port uint16
    }
    
    // ExpectedIptablesChain is a map of expected iptables chain and jump rules
    type ExpectedIptablesChain map[string][]ExpectedIptablesRule
    
    // ExpectedIptablesRule is the expected iptables rules with jump chain and match ipset name
    type ExpectedIptablesRule struct {
    	SourceAddress string
    	JumpChain     string
    	MatchSet      string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. security/pkg/pki/util/verify_cert_test.go

    			expectedErr:    "failed to parse root certificate",
    		},
    		"Cert chain bad": {
    			privPem:        nil,
    			certChainPem:   []byte(certChainBad),
    			rootCertPem:    []byte(rootCert),
    			expectedFields: verifyField1,
    			expectedErr:    "failed to parse certificate chain",
    		},
    		"Failed to verify cert chain": {
    			privPem:        nil,
    			certChainPem:   []byte(certChainNoRoot),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 16 14:56:37 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

                converter = new LangAnayzerConverter(null);
            } else {
                final ReadingConverterChain chain = new ReadingConverterChain();
                for (final String lang : langs) {
                    chain.addConverter(new LangAnayzerConverter(lang));
                }
                converter = chain;
            }
            return converter.convert(text, field);
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/VisualCpp.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * The Visual C++ tool chain.
     */
    @Incubating
    public interface VisualCpp extends NativeToolChain {
        /**
         * The directory where Visual Studio or Visual C++ is installed.
         */
        File getInstallDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/log/command.go

    	Identifier string
    	Comment    string
    }
    
    var (
    	JumpInbound             = Command{"JumpInbound", "direct all traffic through ISTIO_INBOUND chain"}
    	JumpOutbound            = Command{"JumpOutbound", "direct all traffic through ISTIO_OUTBOUND chain"}
    	ExcludeInboundPort      = Command{"ExcludeInboundPort", "exclude inbound port from capture"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 15 16:33:57 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockFilter.java

        @Override
        public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
            CountDownLatch latch = new CountDownLatch(1);
            try {
                latch.await(blockForSeconds, TimeUnit.SECONDS);
            } catch (InterruptedException e) {
                // ignore
            }
            chain.doFilter(request, response);
        }
    
        @Override
        public void destroy() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheRequestHeadersIntegrationTest.groovy

                @Override
                void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
                    assert request.getHeader("X-Gradle-Version") == GradleVersion.current().version
                    chain.doFilter(request, response)
                }
    
                @Override
                void destroy() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/SwiftToolChainDiscoveryIntegrationTest.groovy

            fails('assemble')
    
            and:
            failure.assertHasDescription("Execution failed for task ':compileDebugSwift'.")
            failure.assertHasCause("""No tool chain is available to build Swift for host operating system '${osName}' architecture '${archName}':
      - Tool chain '${toolChain.id}' (Swift Compiler):
          - Could not determine SwiftC metadata: swiftc produced unexpected output.""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top