Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Fallocate (0.56 sec)

  1. src/runtime/proc.go

    			// helpers on arm < 7. See
    			// internal/runtime/atomic/sys_linux_arm.s.
    			cpuprof.lostAtomic++
    			return
    		}
    	}
    
    	// Profiling runs concurrently with GC, so it must not allocate.
    	// Set a trap in case the code does allocate.
    	// Note that on windows, one thread takes profiles of all the
    	// other threads, so mp is usually not getg().m.
    	// In fact mp may not even be stopped.
    	// See golang.org/issue/17165.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/reflect/value.go

    			//
    			// TODO(mknyszek): We make a new allocation for each register-allocated
    			// value, but previously we could always point into the heap-allocated
    			// stack frame. This is a regression that could be fixed by adding
    			// additional space to the allocated stack frame and storing the
    			// register-allocated return values into the allocated stack frame and
    			// referring there in the resulting Value.
    			s := unsafe_New(tv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			for i := range testCase.pod.Spec.InitContainers {
    				err = p.Allocate(s, testCase.pod, &testCase.pod.Spec.InitContainers[i])
    				if !reflect.DeepEqual(err, testCase.expectedError) {
    					t.Fatalf("The actual error %v is different from the expected one %v", err, testCase.expectedError)
    				}
    			}
    
    			for i := range testCase.pod.Spec.Containers {
    				err = p.Allocate(s, testCase.pod, &testCase.pod.Spec.Containers[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "podIP": {
              "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
              "type": "string"
            },
            "podIPs": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    		iter := v.MapRange()
    		for iter.Next() {
    			k.SetIterKey(iter)
    			e.SetIterValue(iter)
    		}
    	}))
    	// Calling MapRange should not allocate even though it returns a *MapIter.
    	// The function is inlineable, so if the local usage does not escape
    	// the *MapIter, it can remain stack allocated.
    	want := 0
    	if got != want {
    		t.Errorf("wanted %d alloc, got %d", want, got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	state.assignDsymsToSection(sect, state.data[symn], forceType, aligndatsize)
    	return sect
    }
    
    // allocateDataSections allocates sym.Section objects for data/rodata
    // (and related) symbols, and then assigns symbols to those sections.
    func (state *dodataState) allocateDataSections(ctxt *Link) {
    	// Allocate sections.
    	// Data is processed before segtext, because we need
    	// to see all symbols in the .data and .bss sections in order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        params+=("--concurrent-service-syncs=${CONCURRENT_SERVICE_SYNCS}")
      fi
      if [[ "${NETWORK_PROVIDER:-}" == "kubenet" ]]; then
        params+=("--allocate-node-cidrs=true")
      elif [[ -n "${ALLOCATE_NODE_CIDRS:-}" ]]; then
        params+=("--allocate-node-cidrs=${ALLOCATE_NODE_CIDRS}")
      fi
      if [[ -n "${TERMINATED_POD_GC_THRESHOLD:-}" ]]; then
        params+=("--terminated-pod-gc-threshold=${TERMINATED_POD_GC_THRESHOLD}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    storage for a named variable.
    
    Calling the built-in function <a href="#Allocation"><code>new</code></a>
    or taking the address of a <a href="#Composite_literals">composite literal</a>
    allocates storage for a variable at run time.
    Such an anonymous variable is referred to via a (possibly implicit)
    <a href="#Address_operators">pointer indirection</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		Namespace: "",
    	}
    	testClusterDNSDomain := "TEST"
    	kl.dnsConfigurer = dns.NewConfigurer(recorder, nodeRef, nil, nil, testClusterDNSDomain, "")
    
    	// pod requiring adjustedResource can be successfully allocated because updatePluginResourcesFunc
    	// adjusts node.allocatableResource for this resource to a sufficient value.
    	fittingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    		{Name: "AllocationMode", Type: "string", Description: resourcev1alpha2.ResourceClaimSpec{}.SwaggerDoc()["allocationMode"]},
    		{Name: "State", Type: "string", Description: "A summary of the current state (allocated, pending, reserved, etc.)."},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(resourceClaimColumnDefinitions, printResourceClaim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top