Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 663 for alternate (0.59 sec)

  1. scripts/docs.py

            use_name = f"{code} - {local_language_names[code]}"
            new_alternate.append({"link": url, "name": use_name})
        new_alternate.append({"link": "/em/", "name": "😉"})
        config["extra"]["alternate"] = new_alternate
        return config
    
    
    def update_config() -> None:
        config = get_updated_config_content()
        en_config_path.write_text(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable with variant conditional sources"() {
            when:
            app.writeSources(file("src/win32"))
            app.alternate.writeSources(file("src/x64"))
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                binaries.all { binary ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		}
    		if len(item.alternate) == 0 {
    			continue
    		}
    		q, err = ParseQuantity(item.alternate)
    		if err != nil {
    			t.Errorf("%#v: unexpected error: %v", item.expect, err)
    			continue
    		}
    		if len(q.s) != 0 {
    			t.Errorf("%#v: unexpected nested string: %v", item.expect, q.s)
    		}
    		if q.String() != item.expect {
    			t.Errorf("%#v: unexpected alternate canonical: %v", item.expect, q.String())
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    The recommended way to deal with dynamic versions is to use <<dependency_locking.adoc#dependency-locking,dependency locking>>.
    However, it is possible to prevent the use of dynamic versions altogether, which is an alternate strategy:
    
    .Failing on dynamic versions
    ====
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-resolutionStrategy/kotlin",files="build.gradle.kts[tags=fail-on-dynamic]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // it is called in CreateDirectoriesRecursively() assuming that it will change
      // a pathname from directory syntax (trailing separator) to filename syntax.
      //
      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/sumdb.go

    		return "", nil, fmt.Errorf("invalid sumdb name (must be host[/path]): %s %+v", name, *direct)
    	}
    
    	// Determine how to get to database.
    	var base *url.URL
    	if len(key) >= 2 {
    		// Use explicit alternate URL listed in $GOSUMDB,
    		// bypassing both the default URL derivation and any proxies.
    		u, err := url.Parse(key[1])
    		if err != nil {
    			return "", nil, fmt.Errorf("invalid GOSUMDB URL: %v", err)
    		}
    		base = u
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
    	// APIs may return other objects types at their discretion, such as error conditions, requests for alternate representations, or other operation specific behavior.
    	// This value will be null or empty if an APIService reports subresources but supports no operations on the parent resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. cmd/postpolicyform.go

    					return parsedPolicy, fmt.Errorf("Unknown type %s of conditional field value %s found in POST policy form", reflect.TypeOf(condt).String(), condt)
    				}
    				// {"acl": "public-read" } is an alternate way to indicate - [ "eq", "$acl", "public-read" ]
    				// In this case we will just collapse this into "eq" for all use cases.
    				parsedPolicy.Conditions.Policies = append(parsedPolicy.Conditions.Policies, struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            supplierInteractions = withPerVersionStatusSupplier(metadataFile, true, "println 'Alternate implementation'")
            run 'checkDeps'
    
            then:
            outputContains("Providing metadata for group:projectB:2.2")
            outputContains("Providing metadata for group:projectB:1.1")
            outputContains("Alternate implementation")
    
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. src/net/rpc/server.go

    // ServeConn blocks, serving the connection until the client hangs up.
    // The caller typically invokes ServeConn in a go statement.
    // ServeConn uses the gob wire format (see package gob) on the
    // connection. To use an alternate codec, use [ServeCodec].
    // See [NewClient]'s comment for information about concurrent access.
    func (server *Server) ServeConn(conn io.ReadWriteCloser) {
    	buf := bufio.NewWriter(conn)
    	srv := &gobServerCodec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top