Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,099 for myHost (0.23 sec)

  1. src/cmd/compile/internal/syntax/source.go

    )
    
    // The source buffer is accessed using three indices b (begin),
    // r (read), and e (end):
    //
    // - If b >= 0, it points to the beginning of a segment of most
    //   recently read characters (typically a Go literal).
    //
    // - r points to the byte immediately following the most recently
    //   read character ch, which starts at r-chw.
    //
    // - e points to the byte immediately following the last byte that
    //   was read into the buffer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_import_issue42891.txt

    # If an import declaration is an absolute path, most commands should report
    # an error instead of going into an infinite loop.
    # Verifies golang.org/issue/42891.
    go list .
    stdout '^m$'
    
    -- go.mod --
    module m
    
    go 1.16
    -- m.go --
    package m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 30 22:05:31 UTC 2020
    - 250 bytes
    - Viewed (0)
  3. pkg/apis/core/validation/events.go

    		}
    		if len(event.Action) == 0 {
    			allErrs = append(allErrs, field.Required(field.NewPath("action"), ""))
    		}
    		if len(event.Action) > ActionLengthLimit {
    			allErrs = append(allErrs, field.Invalid(field.NewPath("action"), "", fmt.Sprintf("can have at most %v characters", ActionLengthLimit)))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  4. docs/en/docs/history-design-future.md

    ## Design
    
    Then I spent some time designing the developer "API" I wanted to have as a user (as a developer using FastAPI).
    
    I tested several ideas in the most popular Python editors: PyCharm, VS Code, Jedi based editors.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. releasenotes/notes/proxy-headers.yaml

    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Added** a new configuration to `ProxyConfig`, `ProxyHeaders`. This allows customization of headers like `server`, `x-forwarded-client-cert`, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 18:08:43 UTC 2023
    - 314 bytes
    - Viewed (0)
  6. src/os/dir.go

    // returns a slice of up to n [FileInfo] values, as would be returned
    // by [Lstat], in directory order. Subsequent calls on the same file will yield
    // further FileInfos.
    //
    // If n > 0, Readdir returns at most n FileInfo structures. In this case, if
    // Readdir returns an empty slice, it will return a non-nil error
    // explaining why. At the end of a directory, the error is [io.EOF].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/runtime/histogram.go

    	"unsafe"
    )
    
    const (
    	// For the time histogram type, we use an HDR histogram.
    	// Values are placed in buckets based solely on the most
    	// significant set bit. Thus, buckets are power-of-2 sized.
    	// Values are then placed into sub-buckets based on the value of
    	// the next timeHistSubBucketBits most significant bits. Thus,
    	// sub-buckets are linear within a bucket.
    	//
    	// Therefore, the number of sub-buckets (timeHistNumSubBuckets)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         *     such as `Int = UnresolvedClass`.
         *  2. It forces the user to handle error types explicitly, which reduces the risk of false positives.
         *  3. It is consistent with most of the behavior of the Kotlin compiler.
         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

                compileTestJava.options.fork = true  // forked as 'Gradle Test Executor 1'
            """
    
            file("src/test/java/MyTest.java") << """
                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pkg/test/util/yml/parts.go

    	cfgs := SplitString(content)
    	result := map[string]string{}
    	for _, cfg := range cfgs {
    		var typeMeta metav1.TypeMeta
    		if e := yaml.Unmarshal([]byte(cfg), &typeMeta); e != nil {
    			// Ignore invalid parts. This most commonly happens when it's empty or contains only comments.
    			continue
    		}
    		result[typeMeta.Kind] = JoinString(result[typeMeta.Kind], cfg)
    	}
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top