Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 717 for filename (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/configuration/ScriptPluginFactorySelectorTest.groovy

            1 * fooScriptPlugin.apply(target)
        }
    
        private ScriptSource scriptSourceFor(String fileName, String content = '') {
            def resource = new StringTextResource(fileName, content)
            return Mock(ScriptSource) {
                getFileName() >> fileName
                getResource() >> resource
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. cluster/gce/windows/configure.ps1

          Import-Module -Force C:\$Filename
          return
        }
        Log-Output "Warning: C:\$Filename already exists, will overwrite it."
      }
      New-Item -ItemType file -Force C:\$Filename | Out-Null
      Set-Content C:\$Filename $module
      Import-Module -Force C:\$Filename
    }
    
    # Returns true if the ENABLE_STACKDRIVER_WINDOWS or ENABLE_NODE_LOGGING field in kube_env is true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

        override
        fun transform(outputs: TransformOutputs) {
            val fileName = inputArtifact.get().asFile.name
            for (entry in parameters.keepClassesByArtifact) {      // <3>
                if (fileName.startsWith(entry.key)) {
                    val nameWithoutExtension = fileName.substring(0, fileName.length - 4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/legacy/source/kube/origin.go

    // Position is a representation of the location of a source.
    type Position struct {
    	Filename string // filename, if any
    	Line     int    // line number, starting at 1
    }
    
    // String outputs the string representation of the position.
    func (p *Position) String() string {
    	s := p.Filename
    	// TODO: support json file position.
    	if p.isValid() && filepath.Ext(p.Filename) != ".json" {
    		if s != "" {
    			s += ":"
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/PythonJob.java

    public class PythonJob extends ExecJob {
        static final Logger logger = LogManager.getLogger(PythonJob.class);
    
        protected String filename;
    
        protected List<String> argList = new ArrayList<>();
    
        public PythonJob filename(final String filename) {
            this.filename = filename;
            return this;
        }
    
        public PythonJob arg(final String value) {
            argList.add(value);
            return this;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    	Meta  map[string]string
    	Count map[string]uint64
    }
    
    func Parse(filename string, data []byte) (*File, error) {
    	if !bytes.HasPrefix(data, []byte(hdrPrefix)) || len(data) < pageSize {
    		if len(data) < pageSize {
    			return nil, fmt.Errorf("%s: file too short (%d<%d)", filename, len(data), pageSize)
    		}
    		return nil, fmt.Errorf("%s: wrong hdr (not %q)", filename, hdrPrefix)
    	}
    	corrupt := func() (*File, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. helm/minio/templates/_helper_create_policy.txt

      return $?
    }
    
    # createPolicy($name, $filename)
    createPolicy () {
      NAME=$1
      FILENAME=$2
    
      # Create the name if it does not exist
      echo "Checking policy: $NAME (in /config/$FILENAME.json)"
      if ! checkPolicyExists $NAME ; then
        echo "Creating policy '$NAME'"
      else
        echo "Policy '$NAME' already exists."
      fi
      ${MC} admin policy create myminio $NAME /config/$FILENAME.json
    
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/internal/precompiled/PrecompiledGroovyScriptTest.groovy

        private TextFileResourceLoader loader = Mock()
    
        def "throws for filename yielding invalid plugin id"() {
            when:
            new PrecompiledGroovyScript(new File("/foo/bar/f%izzbuzz.gradle"), loader)
    
            then:
            thrown InvalidPluginIdException
        }
    
        def "creates valid java classname from script filename based plugin id"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. tests/test_datastructures.py

        def create_upload_file(file: UploadFile):
            testing_file_store.append(file)
            return {"filename": file.filename}
    
        client = TestClient(app)
        with path.open("rb") as file:
            response = client.post("/uploadfile/", files={"file": file})
        assert response.status_code == 200, response.text
        assert response.json() == {"filename": "test.txt"}
    
        assert testing_file_store
        assert testing_file_store[0].file.closed
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    		return plugin.Frame{Func: funcname}, true
    	}
    
    	linenumber := 0
    	columnnumber := 0
    	// The llvm-symbolizer outputs the <file_name>:<line_number>:<column_number>.
    	// When it cannot identify the source code location, it outputs "??:0:0".
    	// Older versions output just the filename and line number, so we check for
    	// both conditions here.
    	if fileline == "??:0" || fileline == "??:0:0" {
    		fileline = ""
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top