Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,244 for sameId (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                        c1 { attributes { attribute(flavor, objects.named(Flavor, 'preview')); $debug } }
                        c2 { attributes { attribute(flavor, objects.named(Flavor, 'preview')); $release } }
                        c3 { attributes { attribute(flavor, objects.named(Flavor, 'full')); $debug } }
                        c4 { attributes { attribute(flavor, objects.named(Flavor, 'full')); $release } }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  2. src/os/stat.go

    package os
    
    import "internal/testlog"
    
    // Stat returns a [FileInfo] describing the named file.
    // If there is an error, it will be of type [*PathError].
    func Stat(name string) (FileInfo, error) {
    	testlog.Stat(name)
    	return statNolog(name)
    }
    
    // Lstat returns a [FileInfo] describing the named file.
    // If the file is a symbolic link, the returned FileInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    query_or_cookie_extractor(["query_or_cookie_extractor"])
    
    read_query["/items/"]
    
    query_extractor --> query_or_cookie_extractor --> read_query
    ```
    
    ## Using the same dependency multiple times
    
    If one of your dependencies is declared multiple times for the same *path operation*, for example, multiple dependencies have a common sub-dependency, **FastAPI** will know to call that sub-dependency only once per request.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

            configurationCacheRun 'myTask'
    
            and: 'convention mapping is ignored just the same'
            configurationCacheRun 'myTask'
        }
    
        def "restores convention mapped task input property explicitly set to null"() {
            given:
            withConventionMappingForPropertyOfType String, '"42"'
            buildFile << '''
                tasks.named("ok") {
                    inputProperty = null
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @deprecated Use {@link Named.Namer#INSTANCE} instead (since {@link Configuration} now extends {@link Named}).
         */
        @Deprecated
        class Namer implements org.gradle.api.Namer<Configuration> {
    
            public Namer() {
                DeprecationLogger.deprecateType(Namer.class)
                    .replaceWith("Named.Namer.INSTANCE")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    		}
    
    		if named, _ := obj.Type().(*types.Named); named != nil {
    			verifyInterfaceMethodRecvs(t, named, 0)
    		}
    	}
    }
    
    // verifyInterfaceMethodRecvs verifies that method receiver types
    // are named if the methods belong to a named interface type.
    func verifyInterfaceMethodRecvs(t *testing.T, named *types.Named, level int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/struct.go

    		// Fields declared syntactically with the same type (e.g.: a, b, c T)
    		// share the same type expression. Only check type if it's a new type.
    		if i == 0 || f.Type != prev {
    			typ = check.varType(f.Type)
    			prev = f.Type
    		}
    		tag = ""
    		if i < len(e.TagList) {
    			tag = check.tag(e.TagList[i])
    		}
    		if f.Name != nil {
    			// named field
    			add(f.Name, false)
    		} else {
    			// embedded field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationResult.java

                            Attribute<String> stringAtt = Attribute.of(name, String.class);
                            String stringValue;
                            if (attributeValue instanceof Named) {
                                stringValue = ((Named) attributeValue).getName();
                            } else if (attributeValue instanceof Object[]) { // don't bother trying to handle primitive arrays specially
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/os/exec/lp_windows.go

    		if f := file + e; chkStat(f) == nil {
    			return f, nil
    		}
    	}
    	if hasExt(file) {
    		return "", fs.ErrNotExist
    	}
    	return "", ErrNotFound
    }
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    // LookPath also uses PATHEXT environment variable to match
    // a suitable candidate.
    // If file contains a slash, it is tried directly and the PATH is not consulted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

            mapping. Each dataset is saved in a separate TFRecord file whose path
            matches the signature def key of `path_map`.
    
        Raises:
          ValueError: When the signature def key in `representative_dataset` is not
          present in the `path_map`.
    
        Returns:
          A map from signature key to the RepresentativeDatasetFile instance
          contains the path to the saved file.
        """
        dataset_file_map = {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top