Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 561 for yearly (0.19 sec)

  1. src/crypto/tls/quic.go

    	QUICEncryptionLevelApplication
    )
    
    func (l QUICEncryptionLevel) String() string {
    	switch l {
    	case QUICEncryptionLevelInitial:
    		return "Initial"
    	case QUICEncryptionLevelEarly:
    		return "Early"
    	case QUICEncryptionLevelHandshake:
    		return "Handshake"
    	case QUICEncryptionLevelApplication:
    		return "Application"
    	default:
    		return fmt.Sprintf("QUICEncryptionLevel(%v)", int(l))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

            AgentStatus agentStatus,
            Gradle gradle
        ) {
            this.instantiator = instantiator;
            // Shared services must be provided lazily, otherwise they are instantiated too early and some cases can fail
            this.instrumentationTransformRegisterer = new InstrumentationTransformRegisterer(agentStatus, Lazy.atomic().of(gradle::getSharedServices));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_ppc64.s

    	// TODO(jsing): Restore callee-save registers (R14-R31, F14-F31, V20-V31).
    
    	// Go is all done with this OS thread.
    	// Tell pthread everything is ok (we never join with this thread, so
    	// the value here doesn't really matter).
    	MOVD	$0, R3
    
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVW	sig+8(FP), R3
    	MOVD	info+16(FP), R4
    	MOVD	ctx+24(FP), R5
    	MOVD	fn+0(FP), R12
    	MOVD	R12, CTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       * [Call.request] is a redirect to a different address.
       *
       * Prior to OkHttp 4.3 this was incorrectly invoked when the client was ready to read headers.
       * This was misleading for tracing because it was too early.
       */
      open fun responseHeadersStart(call: Call) {
      }
    
      /**
       * Invoked immediately after receiving response headers.
       *
       * This method is always invoked after [responseHeadersStart].
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/alloc.go

    		allocated, err := al.allocClusterIPs(service, dryRun)
    		return allocated, nil, err
    	}
    
    	// if headless service then we bail out early (no clusterIPs management needed)
    	if len(oldService.Spec.ClusterIPs) > 0 && oldService.Spec.ClusterIPs[0] == api.ClusterIPNone {
    		return nil, nil, nil
    	}
    
    	// CASE B:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  6. src/runtime/crash_cgo_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, early := range []bool{true, false} {
    		cmd := testenv.CleanCmdEnv(exec.Command(exe, "CgoCatchPanic"))
    		// Make sure a panic results in a crash.
    		cmd.Env = append(cmd.Env, "GOTRACEBACK=crash")
    		if early {
    			// Tell testprogcgo to install an early signal handler for SIGABRT
    			cmd.Env = append(cmd.Env, "CGOCATCHPANIC_EARLY_HANDLER=1")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    						},
    					},
    				},
    			},
    		})
    	}
    
    	// If we have a strict policy and all of the ports are strict, it's effectively a strict policy
    	// so we can exit early and have the WorkloadRbac xDS server push its static strict policy.
    	// Note that this doesn't actually attach the policy to any workload; it just makes it available
    	// to ztunnel in case a workload needs it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMaker.java

     * specified, the map uses identity ({@code ==}) comparisons instead for keys. Likewise, if {@link
     * #weakValues} was specified, the map uses identity comparisons for values.
     *
     * <p>The view collections of the returned map have <i>weakly consistent iterators</i>. This means
     * that they are safe for concurrent use, but if other threads modify the map after the iterator is
     * created, it is undefined which of these changes, if any, are reflected in that iterator. These
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

                    "includeVersionByRegex('or.+', 'f.+', '1\\\\.[1-3]')"
            ]
        }
    
        def "can declare that a repository doesn't contain snapshots"() {
            // doesn't really make sense to look for "SNAPSHOT" in an Ivy repository, but this is for the test
            def modIvy = ivyHttpRepo.module('org', 'foo', '1.0-SNAPSHOT').publish()
    
            given:
            repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. pkg/util/goroutinemap/goroutinemap_test.go

    	if err != nil {
    		t.Errorf("Error waiting for GoRoutineMap.Wait: %v", err)
    	}
    }
    
    func Test_NewGoRoutineMap_Positive_Wait(t *testing.T) {
    	// Test that Wait() really blocks until the last operation succeeds
    	// Arrange
    	grm := NewGoRoutineMap(false /* exponentialBackOffOnError */)
    	operationName := "operation-name"
    	operation1DoneCh := make(chan interface{}, 0 /* bufferSize */)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 14.9K bytes
    - Viewed (0)
Back to top