Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 587 for newfiles (0.12 sec)

  1. platforms/software/security/src/testFixtures/groovy/org/gradle/security/fixtures/KeyServer.groovy

                        String keyId = request.queryString - "op=get&options=mr&search=0x"
                        if (KeyServer.this.keyFiles.containsKey(keyId)) {
                            KeyServer.this.fileHandler("/pks/lookup", KeyServer.this.keyFiles[keyId]).handle(request, response)
                        } else {
                            response.sendError(404, "not found")
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/go/parser/performance_test.go

    	b.SetBytes(int64(len(src)))
    	for i := 0; i < b.N; i++ {
    		if _, err := ParseFile(token.NewFileSet(), "", src, ParseComments); err != nil {
    			b.Fatalf("benchmark failed due to parse error: %s", err)
    		}
    	}
    }
    
    func BenchmarkParseOnly(b *testing.B) {
    	b.SetBytes(int64(len(src)))
    	for i := 0; i < b.N; i++ {
    		if _, err := ParseFile(token.NewFileSet(), "", src, ParseComments|SkipObjectResolution); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:35:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftMainWithCppDep.groovy

            """)
        }
    
        @Override
        String getExpectedOutput() {
            return greeter.expectedOutput + sum.sum(5, 7)
        }
    
        @Override
        List<SourceFile> getFiles() {
            return super.getFiles() + sum.getFiles()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/value.go

    const (
    	// BlockValueStyle is the default string encoding which preserves whitespace and newlines.
    	BlockValueStyle EncodeStyle = iota
    
    	// FlowValueStyle indicates that the string is an inline representation of complex types.
    	FlowValueStyle
    
    	// FoldedValueStyle is a multiline string with whitespace and newlines trimmed to a single
    	// a whitespace. Repeated newlines are replaced with a single newline rather than a single
    	// whitespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  5. common/scripts/fix_copyright_banner.sh

    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    for fn in "$@"; do
      if ! grep -L -q -e "Apache License, Version 2" -e "Copyright" "${fn}"; then
        if [[ "${fn}" == *.go || "${fn}" == *.rs ]]; then
          newfile=$(cat "${WD}/copyright-banner-go.txt" "${fn}")
          echo "${newfile}" > "${fn}"
          echo "Fixing license: ${fn}"
        else
          echo "Cannot fix license: ${fn}. Unknown file type"
        fi
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 04:35:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. src/os/os_unix_test.go

    func TestNewFileNonBlock(t *testing.T) {
    	t.Parallel()
    	newFileTest(t, false)
    }
    
    func TestNewFileInvalid(t *testing.T) {
    	t.Parallel()
    	const negOne = ^uintptr(0)
    	if f := NewFile(negOne, "invalid"); f != nil {
    		t.Errorf("NewFile(-1) got %v want nil", f)
    	}
    }
    
    func TestSplitPath(t *testing.T) {
    	t.Parallel()
    	for _, tt := range []struct{ path, wantDir, wantBase string }{
    		{"a", ".", "a"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/collections/ImmutableFilteredList.java

            assert other.source == source;
    
            BitSet newFilter = new BitSet(source.size());
            newFilter.or(filter);
            newFilter.clear(other.getSourceIndex(index));
            return new ImmutableFilteredList<T>(source, newFilter);
        }
    
        /**
         * Returns a new list which contains all items in this list which match the provided {@code matcher}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

                label.newLineAdjustment();
            }
        }
    
        public void redraw(AnsiContext ansi) {
            int newLines = 0 - statusAreaPos.row + getHeight() - 1;
            if (isVisible && newLines > 0) {
                ansi.cursorAt(Cursor.newBottomLeft()).newLines(newLines);
            }
    
            // Redraw every entry of this area
            for (int i = 0; i < entries.size(); ++i) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantFilesRules.java

            if (filesMetadata.getFiles().isEmpty()) {
                return declaredFiles;
            }
            ImmutableList.Builder<T> builder = new ImmutableList.Builder<>();
            if (!filesMetadata.isClearExistingFiles()) {
                builder.addAll(declaredFiles);
            }
            for (VariantFileMetadata file : filesMetadata.getFiles()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/internal/fuzz/sys_posix.go

    }
    
    // getWorkerComm returns communication channels in the worker process.
    func getWorkerComm() (comm workerComm, err error) {
    	fuzzIn := os.NewFile(3, "fuzz_in")
    	fuzzOut := os.NewFile(4, "fuzz_out")
    	memFile := os.NewFile(5, "fuzz_mem")
    	fi, err := memFile.Stat()
    	if err != nil {
    		return workerComm{}, err
    	}
    	size := int(fi.Size())
    	if int64(size) != fi.Size() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top