Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for setchl (0.38 sec)

  1. pilot/pkg/networking/core/listener.go

    	// If credential name is specified at gateway config, create  SDS config for gateway to fetch key/cert from Istiod.
    	case serverTLSSettings.CredentialName != "":
    		authnmodel.ApplyCredentialSDSToServerCommonTLSContext(ctx.CommonTlsContext, serverTLSSettings, credentialSocketExist)
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            assertConfigCacheDiscarded()
            where:
            terse << [true, false]
        }
    
        def "can fetch key from different keyserver"() {
            def keyring = newKeyRing()
            def secondServer = new KeyServer(temporaryFolder.createDir("keyserver-${UUID.randomUUID()}"))
            secondServer.registerPublicKey(keyring.publicKey)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		// heapBits expects modular arithmetic on bitmap
    		// addresses to work.
    		throw("heapArenaBitmapWords not a power of 2")
    	}
    
    	// Check physPageSize.
    	if physPageSize == 0 {
    		// The OS init code failed to fetch the physical page size.
    		throw("failed to get system page size")
    	}
    	if physPageSize > maxPhysPageSize {
    		print("system page size (", physPageSize, ") is larger than maximum page size (", maxPhysPageSize, ")\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    			// so we should double check by calling apiserver and get the newest claim, then compare them.
    			logger.V(4).Info("Maybe cached claim is not the newest one, we should fetch it from apiserver", "PVC", klog.KRef(volume.Spec.ClaimRef.Namespace, volume.Spec.ClaimRef.Name))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		t.Fatal("Hostname returned empty string and no error")
    	}
    	if strings.Contains(hostname, "\x00") {
    		t.Fatalf("unexpected zero byte in hostname: %q", hostname)
    	}
    
    	// There is no other way to fetch hostname on windows, but via winapi.
    	// On Plan 9 it can be taken from #c/sysname as Hostname() does.
    	switch runtime.GOOS {
    	case "android", "plan9":
    		// No /bin/hostname to verify against.
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top