Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 114 for dsts (0.04 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                throws IntrospectionException {
            Object value = root;
    
            // ----------------------------------------------------------------------
            // Walk the dots and retrieve the ultimate value desired from the
            // MavenProject instance.
            // ----------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. src/debug/gosym/symtab.go

    // instantiated type, function, or method). If s.Name contains brackets, then it
    // returns s.Name with all the contents between (and including) the outermost left
    // and right bracket removed. This is useful to ignore any extra slashes or dots
    // inside the brackets from the string searches below, where needed.
    func (s *Sym) nameWithoutInst() string {
    	start := strings.Index(s.Name, "[")
    	if start < 0 {
    		return s.Name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/bigger-applications.md

    But that file doesn't exist, our dependencies are in a file at `app/dependencies.py`.
    
    Remember how our app/file structure looks like:
    
    <img src="/img/tutorial/bigger-applications/package.svg">
    
    ---
    
    The two dots `..`, like in:
    
    ```Python
    from ..dependencies import get_token_header
    ```
    
    mean:
    
    * Starting in the same package that this module (the file `app/routers/items.py`) lives in (the directory `app/routers/`)...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

    import static org.gradle.internal.file.PathTraversalChecker.safePathName;
    import static org.gradle.wrapper.Download.safeUri;
    
    public class Install {
        public static final String DEFAULT_DISTRIBUTION_PATH = "wrapper/dists";
        public static final String SHA_256 = ".sha256";
        public static final int RETRIES = 3;
        private final Logger logger;
        private final IDownload download;
        private final PathAssembler pathAssembler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

        }
    
        @Issue("GRADLE-3499")
        @ToBeFixedForConfigurationCache(because = ":components")
        def "can create a binary which name contains dots"() {
            when:
            buildFile << '''
                model {
                    components {
                        'foo.bar'(NativeLibrarySpec)
                    }
                }
            '''
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    	return string(runes)
    }
    
    func randomLabelKey(c fuzz.Continue) string {
    	namePart := randomLabelPart(c, false)
    	prefixPart := ""
    
    	usePrefix := c.RandBool()
    	if usePrefix {
    		// we can fit, with dots, at most 3 labels in the 253 allotted characters
    		prefixPartsLen := c.Rand.Intn(2) + 1
    		prefixParts := make([]string, prefixPartsLen)
    		for i := range prefixParts {
    			prefixParts[i] = randomDNSLabel(c)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    // the scheduler assumes that capacity is insufficient and tries some other
    // node.
    message CSIStorageCapacity {
      // Standard object's metadata. The name has no particular meaning. It must be
      // be a DNS subdomain (dots allowed, 253 characters). To ensure that
      // there are no conflicts with other CSI drivers on the cluster, the recommendation
      // is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    	// be conservative and guard against bad ASTs
    	if len(f.List) > 0 {
    		return f.List[0].Pos()
    	}
    	return token.NoPos
    }
    
    func (f *FieldList) End() token.Pos {
    	if f.Closing.IsValid() {
    		return f.Closing + 1
    	}
    	// the list should not be empty in this case;
    	// be conservative and guard against bad ASTs
    	if n := len(f.List); n > 0 {
    		return f.List[n-1].End()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    	// 9. src is unsafe.Pointer and dst is a pointer or uintptr.
    	if src.IsUnsafePtr() && (dst.IsPtr() || dst.IsUintptr()) {
    		return ir.OCONVNOP, ""
    	}
    
    	// 10. src is a slice and dst is an array or pointer-to-array.
    	// They must have same element type.
    	if src.IsSlice() {
    		if dst.IsArray() && types.Identical(src.Elem(), dst.Elem()) {
    			return ir.OSLICE2ARR, ""
    		}
    		if dst.IsPtr() && dst.Elem().IsArray() &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"spec":     "spec represents the specification of the CSI Driver.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
Back to top