Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 362 for pinned (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

                                             llvm::ArrayRef<Value>{});
        island_op.getControl().replaceAllUsesWith(island_sink.getControl());
      }
    
      if (legacy_graph_export) {
        // Replicas with no uses should be pinned to a graph fetch so they still
        // execute.
        llvm::SmallVector<Value, 8> unused_replica_controls;
        for (auto& replica : replicas)
          if (replica.use_empty())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_static.go

    func (e SMTAlignmentError) Type() string {
    	return ErrorSMTAlignment
    }
    
    // staticPolicy is a CPU manager policy that does not change CPU
    // assignments for exclusively pinned guaranteed containers after the main
    // container process starts.
    //
    // This policy allocates CPUs exclusively for a container if all the following
    // conditions are met:
    //
    // - The pod QoS class is Guaranteed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. src/go/types/instantiate.go

    	for i, ctxt := range ctxts {
    		hashes[i] = ctxt.instanceHash(orig, targs)
    	}
    
    	// Record the result in all contexts.
    	// Prefer to re-use existing types from expanding context, if it exists, to reduce
    	// the memory pinned by the Named type.
    	updateContexts := func(res Type) Type {
    		for i := len(ctxts) - 1; i >= 0; i-- {
    			res = ctxts[i].update(hashes[i], orig, targs, res)
    		}
    		return res
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/instantiate.go

    	for i, ctxt := range ctxts {
    		hashes[i] = ctxt.instanceHash(orig, targs)
    	}
    
    	// Record the result in all contexts.
    	// Prefer to re-use existing types from expanding context, if it exists, to reduce
    	// the memory pinned by the Named type.
    	updateContexts := func(res Type) Type {
    		for i := len(ctxts) - 1; i >= 0; i-- {
    			res = ctxts[i].update(hashes[i], orig, targs, res)
    		}
    		return res
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. go.mod

    // This is a generated file. Do not edit directly.
    // Ensure you've carefully read
    // https://git.k8s.io/community/contributors/devel/sig-architecture/vendor.md
    // Run hack/pin-dependency.sh to change pinned dependency versions.
    // Run hack/update-vendor.sh to update go.mod files and the vendor directory.
    
    module k8s.io/kubernetes
    
    go 1.22.0
    
    require (
    	bitbucket.org/bertimus9/systemstat v0.5.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/memory_manager.go

    	numaNodes := sets.New[int]()
    	for _, block := range m.state.GetMemoryBlocks(string(pod.UID), container.Name) {
    		for _, nodeID := range block.NUMAAffinity {
    			// avoid nodes duplication when hugepages and memory blocks pinned to the same NUMA node
    			numaNodes.Insert(nodeID)
    		}
    	}
    
    	if numaNodes.Len() == 0 {
    		klog.V(5).InfoS("No allocation is available", "pod", klog.KObj(pod), "containerName", container.Name)
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  7. src/cmd/cgo/internal/testerrors/ptr_test.go

    		fail:      true,
    		expensive: true,
    	},
    	{
    		// Storing a pinned Go pointer into C memory should succeed.
    		name: "barrierpinnedok",
    		c: `#include <stdlib.h>
    		    char **f14a2() { return malloc(sizeof(char*)); }
    		    void f14b2(char **p) {}`,
    		imports:   []string{"runtime"},
    		body:      `var pinr runtime.Pinner; p := C.f14a2(); x := new(C.char); pinr.Pin(x); *p = x; C.f14b2(p); pinr.Unpin()`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. src/runtime/cgocall.go

    		}
    	}
    
    	cgoCheckArg(t, ep.data, t.Kind_&abi.KindDirectIface == 0, top, cgoCheckPointerFail)
    }
    
    const cgoCheckPointerFail = "cgo argument has Go pointer to unpinned Go pointer"
    const cgoResultFail = "cgo result is unpinned Go pointer or points to unpinned Go pointer"
    
    // cgoCheckArg is the real work of cgoCheckPointer. The argument p
    // is either a pointer to the value (of type t), or the value itself,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	// reachability during testing.
    	_KindSpecialReachable = 4
    	// _KindSpecialPinCounter is a special used for objects that are pinned
    	// multiple times
    	_KindSpecialPinCounter = 5
    )
    
    type special struct {
    	_      sys.NotInHeap
    	next   *special // linked list in span
    	offset uint16   // span offset of object
    	kind   byte     // kind of special
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	RepoDigests []string
    	// The size of the image in bytes.
    	Size int64
    	// ImageSpec for the image which include annotations.
    	Spec ImageSpec
    	// Pin for preventing garbage collection
    	Pinned bool
    }
    
    // EnvVar represents the environment variable.
    type EnvVar struct {
    	Name  string
    	Value string
    }
    
    // Annotation represents an annotation.
    type Annotation struct {
    	Name  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top