Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,101 for chains (0.09 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppToolChainChangesIntegrationTest.groovy

            if (numberOfToolChains < 2) {
                // Don't use JUnit 4 Assume: https://github.com/spockframework/spock/issues/1185
                throw new TestAbortedException('2 or more tool chains are required for this test')
            }
            List<List<InstalledToolChain>> result = (0..<(numberOfToolChains - 1)).collectMany { first ->
                ((first + 1)..<numberOfToolChains).collect { second ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. docs_src/security/tutorial005_py310.py

            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        },
        "alice": {
            "username": "alice",
            "full_name": "Alice Chains",
            "email": "******@****.***",
            "hashed_password": "$2b$12$gSvqqUPvlXP2tfVFaWK1Be7DlH.PKZbv5H8KnzzVgXXbVxpva.pFm",
            "disabled": True,
        },
    }
    
    
    class Token(BaseModel):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/crypto/x509/hybrid_pool_test.go

    			}
    			nextSleep = nextSleep * time.Duration(i)
    			if time.Until(deadline) < nextSleep {
    				t.Fatal("windows root pool appears to be in an uninitialized state (missing root that chains to google.com)")
    			}
    			time.Sleep(nextSleep)
    		}
    	}
    
    	// Get the google.com chain, which should be valid on all platforms we
    	// are testing
    	c, err := tls.Dial("tcp", "google.com:443", &tls.Config{InsecureSkipVerify: true})
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. docs_src/security/tutorial005.py

            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        },
        "alice": {
            "username": "alice",
            "full_name": "Alice Chains",
            "email": "******@****.***",
            "hashed_password": "$2b$12$gSvqqUPvlXP2tfVFaWK1Be7DlH.PKZbv5H8KnzzVgXXbVxpva.pFm",
            "disabled": True,
        },
    }
    
    
    class Token(BaseModel):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. docs_src/security/tutorial005_an.py

            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        },
        "alice": {
            "username": "alice",
            "full_name": "Alice Chains",
            "email": "******@****.***",
            "hashed_password": "$2b$12$gSvqqUPvlXP2tfVFaWK1Be7DlH.PKZbv5H8KnzzVgXXbVxpva.pFm",
            "disabled": True,
        },
    }
    
    
    class Token(BaseModel):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/parse_test.go

    				COMMIT
    				`),
    			output: &IPTablesDump{
    				Tables: []Table{{
    					Name: iptables.TableFilter,
    					Chains: []Chain{{
    						Name: iptables.Chain("KUBE-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-EXTERNAL-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-FORWARD"),
    						Rules: []*Rule{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

    import org.gradle.launcher.daemon.protocol.Command;
    
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * A continuation style object used to model the execution of a command.
     * <p>
     * Facilitates processing “chains”, making it easier to break up processing logic into discrete {@link org.gradle.launcher.daemon.server.api.DaemonCommandAction actions}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls4.go

    	T1 []byte
    	T2 struct {
    		x int
    	}
    	T3 interface{
    		m() T2
    	}
    	T4 func(int, T0) chan T2
    )
    
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface{
    		m() A2
    	}
    	A14 = func(int, A0) chan A2
    )
    
    // check assignment compatibility due to equality of types
    var (
    	xi_ int
    	ai Ai = xi_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistry.java

            for (NativeToolChainInternal toolChain : searchOrder) {
                if (toolChain.select(sourceLanguage, targetMachine).isAvailable()) {
                    return toolChain;
                }
            }
    
            // No tool chains can build for this platform. Assemble a description of why
            Map<String, PlatformToolProvider> candidates = new LinkedHashMap<String, PlatformToolProvider>();
            for (NativeToolChainInternal toolChain : searchOrder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. docs_src/security/tutorial005_an_py310.py

            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        },
        "alice": {
            "username": "alice",
            "full_name": "Alice Chains",
            "email": "******@****.***",
            "hashed_password": "$2b$12$gSvqqUPvlXP2tfVFaWK1Be7DlH.PKZbv5H8KnzzVgXXbVxpva.pFm",
            "disabled": True,
        },
    }
    
    
    class Token(BaseModel):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top