Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 858 for entirely (0.14 sec)

  1. src/image/internal/imageutil/impl.go

    // r.Min in dst aligned with sp in src. It reports whether the draw was
    // successful. If it returns false, no dst pixels were changed.
    //
    // This function assumes that r is entirely within dst's bounds and the
    // translation of r from dst coordinate space to src coordinate space is
    // entirely within src's bounds.
    func DrawYCbCr(dst *image.RGBA, r image.Rectangle, src *image.YCbCr, sp image.Point) (ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/storage/resource_config.go

    		if matcher(k) {
    			keysToRemove = append(keysToRemove, k)
    		}
    	}
    	for _, k := range keysToRemove {
    		delete(o.ResourceConfigs, k)
    	}
    }
    
    // DisableVersions disables the versions entirely.
    // This will remove any preferences previously set on individual resources.
    func (o *ResourceConfig) DisableVersions(versions ...schema.GroupVersion) {
    	for _, version := range versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/syntax.go

    // An ErrorHandler is called for each error encountered reading a .go file.
    type ErrorHandler func(err error)
    
    // A Pragma value augments a package, import, const, func, type, or var declaration.
    // Its meaning is entirely up to the PragmaHandler,
    // except that nil is used to mean “no pragma seen.”
    type Pragma interface{}
    
    // A PragmaHandler is used to process //go: directives while scanning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            // Windows line endings are made up of two characters,
            // we should see an equal number of lines unless
            // the generator is using the wrong line ending entirely
            // or has generated some lines with one or the other character
            carriageLineEndings == newlineEndings
            windowsLineEndings == newlineEndings
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/go/importer/importer.go

    // for the compilers "gc" and "gccgo", or for importing directly
    // from the source if the compiler argument is "source". In this
    // latter case, importing may fail under circumstances where the
    // exported API is not entirely defined in pure Go source code
    // (if the package API depends on cgo-defined entities, the type
    // checker won't have access to those).
    //
    // The lookup function is called each time the resulting importer needs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    // configured to report strict errors, the first error return value may be a non-nil strict decoding
    // error. If the last error return value is non-nil, then the unmarshal failed entirely and the
    // state of the destination object should not be relied on.
    func (s *serializer) unmarshal(data []byte, into interface{}) (strict, lax error) {
    	if u, ok := into.(runtime.Unstructured); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. manifests/charts/gateway/values.yaml

      # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl.
      securityContext: {}
      containerSecurityContext: {}
    
      service:
        # Type of service. Set to "None" to disable the service entirely
        type: LoadBalancer
        ports:
        - name: status-port
          port: 15021
          protocol: TCP
          targetPort: 15021
        - name: http2
          port: 80
          protocol: TCP
          targetPort: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

        // Ignore trailing junk
        assertThat("Thursday, 01-Jan-1970 00:00:00 PST JUNK".toHttpDateOrNull()!!.time)
          .isEqualTo(28800000L)
    
        // ANSI C's asctime() format
        // This format ignores the timezone entirely even if it is present and uses GMT.
        assertThat("Fri Jun 6 12:30:30 2014 PST".toHttpDateOrNull()!!.time).isEqualTo(1402057830000L)
        // Ignore trailing junk.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // and stored as global variables, like:
    //
    //	package mypackage
    //	var errorCount = counter.New("mypackage/errors")
    //
    // (The initialization of errorCount in this example is handled
    // entirely by the compiler and linker; this line executes no code
    // at program startup.)
    //
    // Then code can call Add to increment the counter
    // each time the corresponding event is observed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

     * be modified.</p>
     *
     * <p>Using this interface, you can change the destination path of the file, filter the content of the file, or exclude
     * the file from the result entirely.</p>
     *
     * <p>Access to the source file itself after any filters have been added is not a supported operation.
     * </p>
     *
     */
    @HasInternalProtocol
    @NonExtensible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top