Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 557 for nofile (0.17 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

        }
    
        def "creates MavenArtifact for file notation"() {
            when:
            File file = new File(fileName)
            fileNotationParser.parseNotation('some-file') >> file
    
            and:
            MavenArtifact mavenArtifact = parser.parseNotation('some-file')
    
            then:
            mavenArtifact.extension == extension
            mavenArtifact.file == file
            mavenArtifact.classifier == null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/FileWalkingBenchmark.java

        }
    
        @Benchmark
        public void java6walk(Blackhole blackhole) {
            File file = missing ? missingFile : existingFile;
            while (!file.equals(tempDirFile)) {
                file = file.getParentFile();
                blackhole.consume(file.exists());
            }
            blackhole.consume(file);
        }
    
        @Benchmark
        public void java7walk(Blackhole blackhole) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    ## ## Licensed to the Apache Software Foundation (ASF) under one ## or more contributor license agreements. See the NOTICE file ## distributed with this work for additional information ## regarding copyright ownership. The ASF licenses this file ## to you under the Apache License, Version 2.0 (the ## "License"); you may not use this file except in compliance ## with the License. You may obtain a copy of the License at ## ## http://www.apache.org/licenses/LICENSE-2.0 ## ## Unless required by applicable...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    	NumStmt, Count      int
    }
    
    type byFileName []*Profile
    
    func (p byFileName) Len() int           { return len(p) }
    func (p byFileName) Less(i, j int) bool { return p[i].FileName < p[j].FileName }
    func (p byFileName) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
    
    // ParseProfiles parses profile data in the specified file and returns a
    // Profile for each source file described therein.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. pkg/scheduler/profile/profile.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package profile holds the definition of a scheduling Profile.
    package profile
    
    import (
    	"context"
    	"errors"
    	"fmt"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/kubernetes/scheme"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 06 01:11:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/AbstractCompilerPluginTest.groovy

            File parent = Paths.get(sourceFolder.absolutePath, "src", "main", "java", packageFolder).toFile()
            File f = Paths.get(parent.absolutePath, "${className}.java").toFile()
            parent.mkdirs()
            f.text = body
            return [f]
        }
    
        List<File> toModuleSourceFile(String body) {
            def className = "module-info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/annotations/Fe10IdeNormalAnalysisSourceModuleAnalysisApiAnnotationsOnFilesTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/annotations/annotationsOnFiles"), Pattern.compile("^(.+)\\.kt$"), null, true);
      }
    
      @Test
      @TestMetadata("onFile.kt")
      public void testOnFile() {
        runTest("analysis/analysis-api/testData/annotations/annotationsOnFiles/onFile.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

            }
            if (notation instanceof URI) {
                URI uri = (URI) notation;
                if ("file".equals(uri.getScheme())) {
                    try {
                        result.converted(new File(uri));
                        return;
                    } catch (IllegalArgumentException ignored) {
                        // Bad file URI, return URI as-is
                    }
                }
                result.converted(uri);
                return;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaPlatformIntegTest.groovy

            then:
            javaPlatform.assertPublished()
            javaPlatform.assertNoDependencies()
    
            and:
            resolveArtifacts(javaPlatform) { noFiles() }
            resolveApiArtifacts(javaPlatform) { noFiles() }
            resolveRuntimeArtifacts(javaPlatform) { noFiles() }
        }
    
        def "can publish java-platform with constraints"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. src/net/http/testdata/file

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 11 bytes
    - Viewed (0)
Back to top