Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Stub (0.06 sec)

  1. pkg/api/pod/util_test.go

    				if c.SecurityContext != nil {
    					t.Errorf("VisitContainers() did not drop SecurityContext for ephemeral container %q", c.Name)
    				}
    			}
    		})
    	}
    }
    
    func TestPodSecrets(t *testing.T) {
    	// Stub containing all possible secret references in a pod.
    	// The names of the referenced secrets match struct paths detected by reflection.
    	pod := &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    					v1.ResourceMemory:           *resource.NewQuantity(10e9, resource.BinarySI),
    					v1.ResourceEphemeralStorage: *resource.NewQuantity(5000, resource.BinarySI),
    				},
    			}
    			// Since this test retroactively overrides the stub container manager,
    			// we have to regenerate default status setters.
    			kubelet.setNodeStatusFuncs = kubelet.defaultNodeStatusFuncs()
    
    			kubeClient := testKubelet.fakeKubeClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    // symbol and then direct an indirect call to that value.
    //
    // Note that for a given symbol (as above) it is perfectly legal to
    // have both direct and indirect references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	DF_1_GLOBAUDIT DynFlag1 = 0x01000000
    	// Indicates that the object defines, or makes reference to singleton symbols.
    	DF_1_SINGLETON DynFlag1 = 0x02000000
    	// Indicates that the object is a stub.
    	DF_1_STUB DynFlag1 = 0x04000000
    	// Indicates that the object is a position-independent executable.
    	DF_1_PIE DynFlag1 = 0x08000000
    	// Indicates that the object is a kernel module.
    	DF_1_KMOD DynFlag1 = 0x10000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    			if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    				continue
    			}
    
    			if skipLines > 0 {
    				skipLines--
    				continue
    			}
    
    			// Remove duplicate main symbol with runtime/cgo on AIX.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    			klog.V(vLevel).InfoS("Container garbage collection succeeded")
    		}
    	}, ContainerGCPeriod, wait.NeverStop)
    
    	// when the high threshold is set to 100, and the max age is 0 (or the max age feature is disabled)
    	// stub the image GC manager
    	if kl.kubeletConfiguration.ImageGCHighThresholdPercent == 100 &&
    		(!utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) || kl.kubeletConfiguration.ImageMaximumGCAge.Duration == 0) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	ModResolveTests bool
    
    	// MainOnly is true if the caller only wants to load main packages.
    	// For a literal argument matching a non-main package, a stub may be returned
    	// with an error. For a non-literal argument (with "..."), non-main packages
    	// are not be matched, and their dependencies may not be loaded. A warning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top