Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,184 for chain (0.08 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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

        @Override
        String normalize(String commandOutput, ExecutionMetadata executionMetadata) {
            return commandOutput
                .replaceAll("Tool chain '[\\w+\\-]+' \\([\\w\\- ]+\\)","Tool chain 'clang' (Clang)")
                .replaceAll("platform '[\\w+\\-]+'","platform 'current'")
                .replaceAll("(build/libs/.+/shared/(\\w+))\\.so") { "${it[1]}.dylib" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. security/pkg/server/ca/server_test.go

    			certChain:    nil,
    			caller:       nil,
    			fakeAuthInfo: &mockAuthInfo{"not-tls"},
    			ipAddr:       mockIPAddr,
    			code:         codes.Unauthenticated,
    		},
    		// no cert chain presented
    		"Empty cert chain": {
    			certChain: [][]*x509.Certificate{},
    			caller:    nil,
    			ipAddr:    mockIPAddr,
    			code:      codes.Unauthenticated,
    		},
    		// certificate misses the SAN field
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection_test.go

    		})
    	}
    }
    
    func alreadyHit(cur instance, chain []instance) bool {
    	for _, cc := range chain {
    		if cur == cc {
    			return true
    		}
    	}
    	return false
    }
    
    func checkCycles(t *testing.T, start instance, cases []instance, chain []instance) {
    	if alreadyHit(start, chain) {
    		t.Fatalf("cycle on leader election: cur %v, chain %v", start, chain)
    	}
    	for _, nextHop := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. security/samples/plugin_ca_certs/gen_certs.sh

    openssl x509 -req -days 36500 -in ca-cert.csr -sha256 -CA root-cert.pem -CAkey root-key.pem -CAcreateserial -out ca-cert.pem -extensions v3_req -extfile ca.cfg
    
    rm ./*csr
    rm ./*srl
    
    echo 'Generate cert chain file.'
    cp ca-cert.pem cert-chain.pem
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top