Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 182 for Gleason (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Changing something in the _buildSrc_ directory also has an impact as it invalidates build-script caching.
    The main reason for this is the slower script compilation for Kotlin DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	// On 32-bit platforms, this same point is the 256 byte size class
    	// (8 KiB / 256 bytes * 8 bytes-per-header = 256 bytes of overhead).
    	//
    	// Guaranteed to be exactly at a size class boundary. The reason this value is
    	// an exclusive minimum is subtle. Suppose we're allocating a 504-byte object
    	// and its rounded up to 512 bytes for the size class. If minSizeForMallocHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	//
    	// N.B. If the heap goal exceeds the threshold then shrinks to a very small size
    	// again, then huge pages will still be enabled for this mapping. The reason is that
    	// there's no point unless we're also returning the physical memory for these
    	// metadata mappings back to the OS. That would be quite complex to do in general
    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. src/crypto/tls/handshake_client_test.go

    				buf = buf[:n]
    				if !bytes.Equal([]byte(opensslSentinel), buf) {
    					t.Errorf("Client.Read returned %q, but wanted %q", string(buf), opensslSentinel)
    				}
    			}()
    
    			if write {
    				// There's no real reason to wait for the client KeyUpdate to
    				// send data with the new server keys, except that s_server
    				// drops writes if they are sent at the wrong time.
    				<-stdout.readKeyUpdate
    				stdin <- opensslSendSentinel
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			wantStatus: framework.NewStatus(framework.Unschedulable, "preemption: 0/3 nodes are available: 1 Insufficient cpu, 2 No preemption victims found for incoming pod."),
    		},
    		{
    			name: "no candidate nodes found with mixed reason, 2 UnschedulableAndUnresolvable nodes and 2 nodes don't have enough CPU resource",
    			pod:  st.MakePod().Name("p").UID("p").Namespace(v1.NamespaceDefault).Priority(highPriority).Req(largeRes).Obj(),
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    that directory since the last time it was executed are ignored and will NOT cause the task to be out of date. This is so unrelated tasks may share an output directory without interfering with each other. If this is not the behaviour you want for some reason, consider using link:{javadocPath}/org/gradle/api/tasks/TaskOutputs.html#upToDateWhen-groovy.lang.Closure-[TaskOutputs.upToDateWhen(groovy.lang.Closure)]
    
    Note also that changing the availability of an unavailable file (e.g. modifying the...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

        * This ensures that attachment and detachment of volumes is independent of any single nodes’ availability. Meaning, if a node or kubelet becomes unavailable for any reason, the volumes attached to that node will be detached so they are free to be attached to other nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    		if base != 0 {
    			s = h.tryAllocMSpan()
    			if s != nil {
    				goto HaveSpan
    			}
    			// We have a base but no mspan, so we need
    			// to lock the heap.
    		}
    	}
    
    	// For one reason or another, we couldn't get the
    	// whole job done without the heap lock.
    	lock(&h.lock)
    
    	if needPhysPageAlign {
    		// Overallocate by a physical page to allow for later alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/os/os_test.go

    				"local",
    			},
    		}
    	case "wasip1":
    		// wasmtime has issues resolving symbolic links that are often present
    		// in directories like /etc/group below (e.g. private/etc/group on OSX).
    		// For this reason we use files in the Go source tree instead.
    		return &sysDir{
    			runtime.GOROOT(),
    			[]string{
    				"go.env",
    				"LICENSE",
    				"CONTRIBUTING.md",
    			},
    		}
    	}
    	return &sysDir{
    		"/etc",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    		// this request.
    		return true
    	}
    	if err == errMissingHost {
    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    		// should've hung up on us.
    		//
    		// Also, if we retried now, we could loop forever
    		// creating new connections and retrying if the server
    		// is just hanging up on us because it doesn't like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top