Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for Honor (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // parameterization of a unitchecker API that allows the client to
    // determine how and where facts and types are produced and consumed.
    // (Note that the eventual API will likely be quite different.)
    //
    // The defaults honor a Config in a manner compatible with 'go vet'.
    var (
    	makeTypesImporter = func(cfg *Config, fset *token.FileSet) types.Importer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/signature.go

    	// redeclarations at that time).
    	//
    	// TODO(adonovan): now that each declaration has the correct
    	// scopePos, there should be no need for scope squashing.
    	// Audit to ensure all lookups honor scopePos and simplify.
    	scope := NewScope(check.scope, nopos, nopos, "function body (temp. scope)")
    	scopePos := syntax.EndPos(ftyp) // all parameters' scopes start after the signature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/go/types/signature.go

    	// redeclarations at that time).
    	//
    	// TODO(adonovan): now that each declaration has the correct
    	// scopePos, there should be no need for scope squashing.
    	// Audit to ensure all lookups honor scopePos and simplify.
    	scope := NewScope(check.scope, nopos, nopos, "function body (temp. scope)")
    	scopePos := ftyp.End() // all parameters' scopes start after the signature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector.go

    		switch {
    		case hasOrphanFinalizer(latest):
    			// if an existing orphan finalizer is already on the object, honor it.
    			policy = metav1.DeletePropagationOrphan
    		case hasDeleteDependentsFinalizer(latest):
    			// if an existing foreground finalizer is already on the object, honor it.
    			policy = metav1.DeletePropagationForeground
    		default:
    			// otherwise, default to background.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"On graphs, dotted edges represent paths through nodes that have been removed."),
    	"nodefraction": "Hide nodes below <f>*total",
    	"edgefraction": "Hide edges below <f>*total",
    	"trim": helpText(
    		"Honor nodefraction/edgefraction/nodecount defaults",
    		"Set to false to get the full profile, without any trimming."),
    	"focus": helpText(
    		"Restricts to samples going through a node matching regexp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

            }
            build("help")
        }
    
        @Test
        fun `convention accessors honor HasPublicType`() {
    
            withDefaultSettingsIn("buildSrc")
    
            withBuildScriptIn(
                "buildSrc",
                """
                plugins {
                    `kotlin-dsl`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    	disks := er.getDisks()
    	// Assume (N/2 + 1) quorum for Delete()
    	// this is a theoretical assumption such that
    	// for delete's we do not need to honor storage
    	// class for objects that have reduced quorum
    	// due to storage class - this only needs to be honored
    	// for Read() requests alone that we already do.
    	writeQuorum := len(disks)/2 + 1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. build/common.sh

    # *_OUTPUT_BINPATH - location where final binaries are placed.  If the remote
    #                    is really remote, this is the stuff that has to be copied
    #                    back.
    # OUT_DIR can come in from the Makefile, so honor it.
    readonly LOCAL_OUTPUT_ROOT="${KUBE_ROOT}/${OUT_DIR:-_output}"
    readonly LOCAL_OUTPUT_SUBPATH="${LOCAL_OUTPUT_ROOT}/dockerized"
    readonly LOCAL_OUTPUT_BINPATH="${LOCAL_OUTPUT_SUBPATH}/bin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

              }
            }
          }
        }
    
        override fun priority(
          streamId: Int,
          streamDependency: Int,
          weight: Int,
          exclusive: Boolean,
        ) {
          // TODO: honor priority.
        }
    
        override fun pushPromise(
          streamId: Int,
          promisedStreamId: Int,
          requestHeaders: List<Header>,
        ) {
          pushRequestLater(promisedStreamId, requestHeaders)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pe.go

    	}
    	d := pefile.addSection(".pdata", int(Segpdata.Length), int(Segpdata.Length))
    	d.characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ
    	if ctxt.LinkMode == LinkExternal {
    		// Some gcc versions don't honor the default alignment for the .pdata section.
    		d.characteristics |= IMAGE_SCN_ALIGN_4BYTES
    	}
    	pefile.pdataSect = d
    	d.checkSegment(&Segpdata)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top