Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for info1 (0.05 sec)

  1. src/cmd/dist/test.go

    				// anything within that directory.
    				return filepath.SkipDir
    			}
    		}
    		if err != nil {
    			return nil
    		}
    
    		info, err := d.Info()
    		if err != nil {
    			return nil
    		}
    
    		mode := info.Mode()
    		if mode&0222 != 0 && (mode.IsDir() || mode.IsRegular()) {
    			dirs = append(dirs, pathMode{path, mode})
    		}
    		return nil
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    							},
    						},
    					},
    				},
    			),
    		},
    	}
    
    	for _, testCase := range testCases {
    		t.Run(testCase.description, func(t *testing.T) {
    			klog.InfoS("TestAllocateAndAddPodWithInitContainers", "name", testCase.description)
    			mgr := &manager{
    				policy:       returnPolicyByName(testCase),
    				state:        state.NewMemoryState(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    	if err != nil {
    		t.Fatalf("expected: <nil>, got: %s", err)
    	}
    	if len(volInfos) != 2 {
    		t.Fatalf("expected: 2, got: %d", len(volInfos))
    	}
    	volFound := false
    	for _, info := range volInfos {
    		if info.Name == "success-vol" {
    			volFound = true
    			break
    		}
    	}
    	if !volFound {
    		t.Errorf("expected: success-vol to be created")
    	}
    
    	// removing the path and simulating disk failure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	GetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation
    //sys	SetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32) (err error) = advapi32.SetTokenInformation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    		t.NewSubTest(testName).Run(func(t framework.TestContext) {
    			firstTest.BuildAndRun(t)
    		})
    		return
    	}
    
    	tsts.checkValid()
    
    	// Testing multiple ports...
    	// Name outer test with constant info. Name inner test with port.
    	outerTestName := fmt.Sprintf("%s%s(%s)", firstTest.prefix, firstTest.opts.HTTP.Path, firstTest.allow)
    	t.NewSubTest(outerTestName).Run(func(t framework.TestContext) {
    		for _, tst := range tsts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			expectedHint: framework.QueueSkip,
    		},
    		"skip-missing-infos": {
    			pod:          podWithClaimTemplateInStatus,
    			claims:       []*resourcev1alpha2.ResourceClaim{pendingDelayedClaim},
    			oldObj:       scheduling,
    			newObj:       scheduling,
    			expectedHint: framework.QueueSkip,
    		},
    		"queue-new-infos": {
    			pod:          podWithClaimTemplateInStatus,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	}
    	sect.Index = uint16(idx)
    	l.sects = append(l.sects, sect)
    	return sect
    }
    
    // SymDynimplib returns the "dynimplib" attribute for the specified
    // symbol, making up a portion of the info for a symbol specified
    // on a "cgo_import_dynamic" compiler directive.
    func (l *Loader) SymDynimplib(i Sym) string {
    	return l.dynimplib[i]
    }
    
    // SetSymDynimplib sets the "dynimplib" attribute for a symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	err = wait.PollImmediate(100*time.Millisecond, informerSyncTimeout, func() (bool, error) {
    		logger.V(8).Info("Waiting for queue to have 1 item", "length", manager.queue.Len())
    		return manager.queue.Len() == 1, nil
    	})
    	if err != nil {
    		t.Fatalf("initial RS didn't result in new item in the queue: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    // function. Variables are identified by their LocalSlot, which may be
    // the result of decomposing a larger variable.
    type FuncDebug struct {
    	// Slots is all the slots used in the debug info, indexed by their SlotID.
    	Slots []LocalSlot
    	// The user variables, indexed by VarID.
    	Vars []*ir.Name
    	// The slots that make up each variable, indexed by VarID.
    	VarSlots [][]SlotID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	// make them writable in order to remove content.
    	filepath.WalkDir(dir, func(path string, info fs.DirEntry, err error) error {
    		// chmod not only directories, but also things that we couldn't even stat
    		// due to permission errors: they may also be unreadable directories.
    		if err != nil || info.IsDir() {
    			os.Chmod(path, 0777)
    		}
    		return nil
    	})
    	return robustio.RemoveAll(dir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top