Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,565 for 50$ (0.02 sec)

  1. src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndEd25519Given

    000001b0  50 f0 b6 07 25 ee 79 b8  f5 e6 17 85 d4 09 e7 d7  |P...%.y.........|
    000001c0  ab 8f 17 cb c2 13 a0 5a  50 cb e4 a7 16 03 03 00  |.......ZP.......|
    000001d0  48 0f 00 00 44 08 07 00  40 b7 24 50 46 db d4 8c  |H...D...@.$PF...|
    000001e0  68 17 f5 5e 79 a9 80 8c  40 23 92 33 4e 1e cc ee  |h..^y...@#.3N...|
    000001f0  d5 35 4d b8 2a 52 f0 7f  50 8e c6 d5 5f bc 08 35  |.5M.*R..P..._..5|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelection.java

         * Unavailable metadata may be caused by a module published without associated metadata.
         *
         * @return the {@code ComponentMetadata} or {@code null} if not available
         * @since 5.0
         */
        @Nullable
        ComponentMetadata getMetadata();
    
        /**
         * Used to access a specific descriptor format.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/dependencies/internal/StrictDependencyResultSpecTest.groovy

            where:
            moduleIdentifier << [id('org.foo', 'foo-core')]
        }
    
        def "does not match unresolved dependencies"() {
            expect:
            !new StrictDependencyResultSpec(moduleIdentifier).isSatisfiedBy(newUnresolvedDependency("org.foo", "foo-core", "5.0"))
    
            where:
            moduleIdentifier << [id('org.foobar', 'foo-core'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 19 10:00:00 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. hack/tools/go.mod

    	github.com/spf13/cast v1.5.0 // indirect
    	github.com/spf13/cobra v1.7.0 // indirect
    	github.com/spf13/jwalterweatherman v1.1.0 // indirect
    	github.com/spf13/pflag v1.0.5 // indirect
    	github.com/spf13/viper v1.13.0 // indirect
    	github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
    	github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect
    	github.com/stretchr/objx v0.5.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. test/codegen/fuse.go

    	for x := <-c; x > 0 && x <= 256; x = <-c {
    	}
    }
    
    func si7c(c <-chan int16) {
    	// amd64:"CMPW\t.+, [$]60","ADDL\t[$]10,"
    	// s390x:"CLIJ\t[$]12, R[0-9]+, [$]60","ADDW\t[$]10,"
    	for x := <-c; x >= -10 && x <= 50; x = <-c {
    	}
    }
    
    func si8c(c <-chan int8) {
    	// amd64:"CMPB\t.+, [$]126","ADDL\t[$]126,"
    	// s390x:"CLIJ\t[$]4, R[0-9]+, [$]126","ADDW\t[$]126,"
    	for x := <-c; x >= -126 && x < 0; x = <-c {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 03 14:30:26 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  7. docs_src/settings/app02/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 159 bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			},
    			expectedScores: []framework.NodeScore{{Name: "node1", Score: 50}, {Name: "node2", Score: 50}},
    			resources:      extendedResourceSet,
    		},
    		{
    			// Honor extended resource if the pod requests.
    			// For both nodes: cpuScore and memScore are 50.
    			// In terms of extended resource score:
    			// - node1 get: 2 / 4 * 100 = 50
    			// - node2 get: (10 - 2) / 10 * 100 = 80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  9. docs_src/settings/app01/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 183 bytes
    - Viewed (0)
  10. go.mod

    	github.com/buger/jsonparser v1.1.1
    	github.com/cespare/xxhash/v2 v2.3.0
    	github.com/cheggaaa/pb v1.0.29
    	github.com/coredns/coredns v1.11.3
    	github.com/coreos/go-oidc/v3 v3.10.0
    	github.com/coreos/go-systemd/v22 v22.5.0
    	github.com/cosnicolaou/pbzip2 v1.0.3
    	github.com/dchest/siphash v1.2.3
    	github.com/dustin/go-humanize v1.0.1
    	github.com/eclipse/paho.mqtt.golang v1.4.3
    	github.com/elastic/go-elasticsearch/v7 v7.17.10
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top