Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,553 for for3 (0.05 sec)

  1. src/go/parser/parser_test.go

    	{name: "for0", format: "package main; func main() { «for { «» }» }", scope: true, scopeMultiplier: 2},                            // Scopes: ForStmt, BlockStmt
    	{name: "for1", format: "package main; func main() { «for x { «» }» }", scope: true, scopeMultiplier: 2},                          // Scopes: ForStmt, BlockStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.fork = fork;
        }
    
        /**
         * Returns options for running the compiler in a child process.
         */
        @Nested
        public ForkOptions getForkOptions() {
            return forkOptions;
        }
    
        /**
         * Sets options for running the compiler in a child process.
         */
        public void setForkOptions(ForkOptions forkOptions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/syscall/exec_plan9.go

    	fd := make([]int, len(attr.Files))
    	nextfd = len(attr.Files)
    	for i, ufd := range attr.Files {
    		if nextfd < int(ufd) {
    			nextfd = int(ufd)
    		}
    		fd[i] = int(ufd)
    	}
    	nextfd++
    
    	if envv != nil {
    		clearenv = RFCENVG
    	}
    
    	// About to call fork.
    	// No more allocation or calls of non-assembly functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/mime/multipart/formdata_test.go

    	for i := 0; i < numFiles; i++ {
    		name := fmt.Sprint(i)
    		if got := len(form.File[name]); got != 1 {
    			t.Fatalf("form.File[%q] has %v entries, want 1", name, got)
    		}
    		fh := form.File[name][0]
    		file, err := fh.Open()
    		if err != nil {
    			t.Fatalf("form.File[%q].Open() = %v", name, err)
    		}
    		if distinct {
    			if _, ok := file.(*os.File); !ok {
    				t.Fatalf("form.File[%q].Open: %T, want *os.File", name, file)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. fastapi/security/oauth2.py

    
    class OAuth2PasswordRequestForm:
        """
        This is a dependency class to collect the `username` and `password` as form data
        for an OAuth2 password flow.
    
        The OAuth2 specification dictates that for a password flow the data should be
        collected using form data (instead of JSON) and that it should have the specific
        fields `username` and `password`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. licenses/istio.io/client-go/LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 18:53:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. licenses/go.opentelemetry.io/otel/sdk/LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. LICENSES/vendor/k8s.io/gengo/v2/LICENSE

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:39 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/syscall/exec_windows.go

    	}
    
    	if hasSpace {
    		b = append(b, '"')
    	}
    	slashes := 0
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		switch c {
    		default:
    			slashes = 0
    		case '\\':
    			slashes++
    		case '"':
    			for ; slashes > 0; slashes-- {
    				b = append(b, '\\')
    			}
    			b = append(b, '\\')
    		}
    		b = append(b, c)
    	}
    	if hasSpace {
    		for ; slashes > 0; slashes-- {
    			b = append(b, '\\')
    		}
    		b = append(b, '"')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top