Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for hasMeta (0.33 sec)

  1. src/io/fs/glob.go

    	// Check pattern is well-formed.
    	if _, err := path.Match(pattern, ""); err != nil {
    		return nil, err
    	}
    	if !hasMeta(pattern) {
    		if _, err = Stat(fsys, pattern); err != nil {
    			return nil, nil
    		}
    		return []string{pattern}, nil
    	}
    
    	dir, file := path.Split(pattern)
    	dir = cleanGlobPath(dir)
    
    	if !hasMeta(dir) {
    		return glob(fsys, dir, file, nil)
    	}
    
    	// Prevent infinite recursion. See issue 15879.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/path/filepath/match.go

    		return nil, err
    	}
    	if !hasMeta(pattern) {
    		if _, err = os.Lstat(pattern); err != nil {
    			return nil, nil
    		}
    		return []string{pattern}, nil
    	}
    
    	dir, file := Split(pattern)
    	volumeLen := 0
    	if runtime.GOOS == "windows" {
    		volumeLen, dir = cleanGlobPathWindows(dir)
    	} else {
    		dir = cleanGlobPath(dir)
    	}
    
    	if !hasMeta(dir[volumeLen:]) {
    		return glob(dir, file, nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    		return nil, err
    	}
    	if !hasMeta(pattern) {
    		if _, err = Lstat(pattern); err != nil {
    			return nil, nil
    		}
    		return []string{pattern}, nil
    	}
    
    	dir, file := filepath.Split(pattern)
    	volumeLen := 0
    	if runtime.GOOS == "windows" {
    		volumeLen, dir = cleanGlobPathWindows(dir)
    	} else {
    		dir = cleanGlobPath(dir)
    	}
    
    	if !hasMeta(dir[volumeLen:]) {
    		return glob(dir, file, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionGraphRenderer.java

        }
    
        default boolean hasData(MeasuredOperationList measuredOperations) {
            return !measuredOperations.getTotalTime().isEmpty();
        }
    
        default ExecutionGraph toExecutionGraph(PerformanceTestExecution execution, int index) {
            Line baseline = new Line(execution.getScenarios().stream().filter(this::hasData).findFirst().orElse(new MeasuredOperationList()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/internal/trace/raw/writer.go

    		}
    	}
    
    	// Write out the length of the data.
    	if spec.HasData {
    		w.buf = binary.AppendUvarint(w.buf, uint64(len(e.Data)))
    	}
    
    	// Write out varint events.
    	_, err := w.w.Write(w.buf)
    	w.buf = w.buf[:0]
    	if err != nil {
    		return err
    	}
    
    	// Write out data.
    	if spec.HasData {
    		_, err := w.w.Write(e.Data)
    		return err
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/trace/event/event.go

    	// otherwise aren't actually surfaced by the trace reader.
    	IsTimedEvent bool
    
    	// HasData is true if the event has trailer consisting of a
    	// varint length followed by unencoded bytes of some data.
    	//
    	// An event may not be both a timed event and have data.
    	HasData bool
    
    	// IsStack indicates that the event represents a complete
    	// stack trace. Specifically, it means that after the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

                            .setStandardInput("hasta la vista $idx")
    
                        assert model.get().description == "hasta la vista $idx"
    
                        assert operation.standardOutput.contains("out=hasta la vista $idx")
                        assert operation.standardOutput.count("out=hasta la vista") == 1
    
                        assert operation.standardError.contains("err=hasta la vista $idx")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/ld_test.go

    	case *pe.OptionalHeader32:
    		dc = oh.DllCharacteristics
    	case *pe.OptionalHeader64:
    		dc = oh.DllCharacteristics
    		hasHEVA := (dc & pe.IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA) != 0
    		if useASLR && !hasHEVA {
    			t.Error("IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA flag is not set")
    		} else if !useASLR && hasHEVA {
    			t.Error("IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA flag should not be set")
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java

        int getCount(String sessionId);
    
        void delete(String sessionId);
    
        void deleteAll();
    
        RESULT getAccessResult(String sessionId, String url);
    
        List<RESULT> getAccessResultList(String url, boolean hasData);
    
        void iterate(String sessionId, final AccessResultCallback<RESULT> accessResultCallback);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/SetSerializerTest.groovy

            when:
            def serializer = new SetSerializer(stringSerializer)
    
            then:
            serialize(["one", null, "three"] as Set, serializer) as List == ["one", null, "three"]
        }
    
        def "serializes with HasSet"() {
            when:
            def serializer = new SetSerializer(stringSerializer, false)
    
            then:
            serialize(['1', '2'] as Set, serializer) instanceof HashSet
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top