Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for upfront (0.14 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingField.txt

    expression: PROPERTY
    text: val names: List<String>                            // clearly tells the type of the property upfront
            field: MutableList<String> = mutableListOf()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 207 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingField.kt

    class C {
        <expr>val names: List<String>                            // clearly tells the type of the property upfront
            field: MutableList<String> = mutableListOf()</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 182 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingFieldDecl.kt

    class C {
        val names: List<String>                            // clearly tells the type of the property upfront
        <expr>field: MutableList<String> = mutableListOf()</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 178 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingFieldInitializer.kt

    class C {
        val names: List<String>                            // clearly tells the type of the property upfront
        field: MutableList<String> = <expr>mutableListOf()</expr>
    }
    
    // IGNORE_FE10
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 242 bytes
    - Viewed (0)
  5. pkg/kube/krt/fetch.go

    		c.RegisterBatch(ff, false)
    	})
    
    	// Now we can do the real fetching
    	// Compute our list of all possible objects that can match. Then we will filter them later.
    	// This pre-filtering upfront avoids extra work
    	var list []T
    	if !d.filter.keys.IsNil() {
    		// If they fetch a set of keys, directly Get these. Usually this is a single resource.
    		list = make([]T, 0, d.filter.keys.Len())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java

                    entry.setMethod(ZipArchiveEntry.DEFLATED);
                } else {
                    entry.setMethod(ZipArchiveEntry.STORED);
                    // A stored ZipEntry requires setting size and CRC32 upfront.
                    // See https://stackoverflow.com/q/1206970.
                    entry.setSize(contents.length);
                    entry.setCompressedSize(contents.length);
                    entry.setCrc(computeCrc32Of(contents));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway.go

    		httpFilterChainOpts := configgen.createGatewayHTTPFilterChainOpts(builder.node, port, nil, serversForPort.RouteName,
    			proxyConfig, istionetworking.ListenerProtocolTCP, builder.push)
    		// In HTTP, we need to have RBAC, etc. upfront so that they can enforce policies immediately
    		httpFilterChainOpts.networkFilters = extension.PopAppendNetwork(httpFilterChainOpts.networkFilters, wasm, extensions.PluginPhase_AUTHN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/pgen.go

    	s.stkalign = int64(types.RegSize)
    	fn := s.curfn
    
    	// Mark the PAUTO's unused.
    	for _, ln := range fn.Dcl {
    		if ln.OpenDeferSlot() {
    			// Open-coded defer slots have indices that were assigned
    			// upfront during SSA construction, but the defer statement can
    			// later get removed during deadcode elimination (#61895). To
    			// keep their relative offsets correct, treat them all as used.
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.KMSv2, tt.kmsv2Enabled)
    
    			ctx, cancel := context.WithCancel(context.Background())
    			cancel() // cancel this upfront so the kms v2 checks do not block
    
    			_, _, kmsUsed, err := getTransformerOverridesAndKMSPluginHealthzCheckers(ctx, &tt.config, "")
    			if err == nil {
    				if kmsUsed == nil || kmsUsed.v2Used != tt.wantV2Used {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. src/runtime/mkpreempt.go

    	for i := 0; i <= 15; i++ {
    		reg := fmt.Sprintf("F%d", i)
    		l.add("FMOVD", reg, 8)
    	}
    
    	// allocate frame, save PC of interrupted instruction (in LR) and flags (condition code)
    	p("IPM R10") // save flags upfront, as ADD will clobber flags
    	p("MOVD R14, -%d(R15)", l.stack)
    	p("ADD $-%d, R15", l.stack)
    	p("MOVW R10, 8(R15)") // save flags
    
    	l.save()
    	p("CALL ·asyncPreempt2(SB)")
    	l.restore()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top