Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for blockn (2.28 sec)

  1. src/runtime/malloc.go

    	// huge pages. We'll set all the old entries after we release the lock.
    	lock(&h.lock)
    	if h.arenasHugePages {
    		unlock(&h.lock)
    		return
    	}
    	h.arenasHugePages = true
    	unlock(&h.lock)
    
    	// N.B. The arenas L1 map is quite small on all platforms, so it's fine to
    	// just iterate over the whole thing.
    	for i := range h.arenas {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	fakePodManager.AddPod(pod)
    	mountsMap, devicesMap, _ := util.GetPodVolumeNames(pod)
    	_, volumeSpec, _, err :=
    		dswp.createVolumeSpec(pod.Spec.Volumes[0], pod, mountsMap, devicesMap)
    
    	// Assert
    	if volumeSpec == nil || err != nil {
    		t.Fatalf("Failed to create volumeSpec with combination of block mode and volumeDevices. err: %v", err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Prior to Gradle 7.6, Groovy scripts permitted access to root project configure methods
    within named container configure methods that throw `MissingMethodException`s.
    Consider the following snippets for examples of this behavior:
    
    Gradle permits access to the top-level `repositories` block from within the `configurations` block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    				},
    				Result: simulation.Result{
    					// This request should be blocked
    					ClusterMatched: "BlackHoleCluster",
    				},
    			},
    			{
    				Name: "direct request to inbound port",
    				Call: simulation.Call{
    					Port:     15006,
    					Protocol: simulation.TCP,
    				},
    				Result: simulation.Result{
    					// This request should be blocked
    					ClusterMatched: "BlackHoleCluster",
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    //
    // Deprecated: Use [ParseRevocationList] instead.
    func ParseCRL(crlBytes []byte) (*pkix.CertificateList, error) {
    	if bytes.HasPrefix(crlBytes, pemCRLPrefix) {
    		block, _ := pem.Decode(crlBytes)
    		if block != nil && block.Type == pemType {
    			crlBytes = block.Bytes
    		}
    	}
    	return ParseDERCRL(crlBytes)
    }
    
    // ParseDERCRL parses a DER encoded CRL from the given bytes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	}
    
    	archs = append(archs, arch{
    		name:               "ARM64",
    		pkg:                "cmd/internal/obj/arm64",
    		genfile:            "../../arm64/ssa.go",
    		ops:                ops,
    		blocks:             blocks,
    		regnames:           regNamesARM64,
    		ParamIntRegNames:   "R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15",
    		ParamFloatRegNames: "F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    }
    
    // Option configures a PriorityQueue
    type Option func(*priorityQueueOptions)
    
    // WithClock sets clock for PriorityQueue, the default clock is clock.RealClock.
    func WithClock(clock clock.Clock) Option {
    	return func(o *priorityQueueOptions) {
    		o.clock = clock
    	}
    }
    
    // WithPodInitialBackoffDuration sets pod initial backoff duration for PriorityQueue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	}
    
    	connState := <-connStateChan
    	peerCerts := connState.PeerCertificates
    	if len(peerCerts) == len(test.expectedPeerCerts) {
    		for i, peerCert := range peerCerts {
    			block, _ := pem.Decode([]byte(test.expectedPeerCerts[i]))
    			if !bytes.Equal(block.Bytes, peerCert.Raw) {
    				t.Fatalf("%s: mismatch on peer cert %d", test.name, i+1)
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    // -----
    // expected-error@+1 {{found different '_xla_compile_device_type' attribute values (GPU,TPU) in same block which is not supported}}
    func.func @invalid_compilation_cluster_mixed_device_types() {
      "tf.opA"() { _xla_compile_device_type = "GPU", _replication_info = "replicate", is_stateless = true} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          }
    
        @JvmName("-addInterceptor") // Prefix with '-' to prevent ambiguous overloads from Java.
        inline fun addInterceptor(crossinline block: (chain: Interceptor.Chain) -> Response) =
          addInterceptor(Interceptor { chain -> block(chain) })
    
        /**
         * Returns a modifiable list of interceptors that observe a single network request and response.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top