Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for fallocate (0.74 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/server.go

    }
    
    func (w *response) Header() Header {
    	if w.cw.header == nil && w.wroteHeader && !w.cw.wroteHeader {
    		// Accessing the header between logically writing it
    		// and physically writing it means we need to allocate
    		// a clone to snapshot the logically written state.
    		w.cw.header = w.handlerHeader.Clone()
    	}
    	w.calledHeader = true
    	return w.handlerHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

          --project "$NETWORK_PROJECT" \
          --router-region "$REGION" \
          --router "$NETWORK-nat-router" \
          --nat-primary-subnet-ip-ranges \
          --auto-allocate-nat-external-ips \
          ${GCE_PRIVATE_CLUSTER_PORTS_PER_VM:+--min-ports-per-vm ${GCE_PRIVATE_CLUSTER_PORTS_PER_VM}}
      fi
    }
    
    function delete-all-firewall-rules() {
      local -a fws
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top