Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 154 for IsSkip (0.32 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    const (
    	// queueSkip indicates that the scheduling queue should skip requeuing the Pod to activeQ/backoffQ.
    	queueSkip queueingStrategy = iota
    	// queueAfterBackoff indicates that the scheduling queue should requeue the Pod after backoff is completed.
    	queueAfterBackoff
    	// queueImmediately indicates that the scheduling queue should skip backoff and requeue the Pod immediately to activeQ.
    	queueImmediately
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    		t.Logf("expected %q, got %q", "Hello world", s)
    	}
    }
    
    func TestDirJoin(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("skipping test on windows")
    	}
    	wfi, err := os.Stat("/etc/hosts")
    	if err != nil {
    		t.Skip("skipping test; no /etc/hosts file")
    	}
    	test := func(d Dir, name string) {
    		f, err := d.Open(name)
    		if err != nil {
    			t.Fatalf("open of %s: %v", name, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    		// Look for `xl.meta/xl.json' at the leaf.
    		if !strings.HasSuffix(item.Path, SlashSeparator+xlStorageFormatFile) &&
    			!strings.HasSuffix(item.Path, SlashSeparator+xlStorageFormatFileV1) {
    			// if no xl.meta/xl.json found, skip the file.
    			return sizeSummary{}, errSkipFile
    		}
    		stopFn := globalScannerMetrics.log(scannerMetricScanObject, s.drivePath, pathJoin(item.bucket, item.objectPath()))
    		res := make(map[string]string, 8)
    		defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

            info.write_attrs = user->getAttrDictionary();
            written_regions.set(user->getParentRegion()->getRegionNumber());
          }
        }
    
        // If the resource is used in an op that we do not understand, skip
        // lifting for that resource.
        if (unsupported_use) continue;
    
        info.is_written_all = written_regions.count() == op_->getNumRegions();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager_test.go

    // happens, we will NOT delete devices; and no orphaned devices left.
    func TestDevicePluginReRegistration(t *testing.T) {
    	// TODO: Remove skip once https://github.com/kubernetes/kubernetes/pull/115269 merges.
    	if goruntime.GOOS == "windows" {
    		t.Skip("Skipping test on Windows.")
    	}
    	socketDir, socketName, pluginSocketName, err := tmpSocketDir()
    	require.NoError(t, err)
    	defer os.RemoveAll(socketDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    			func(t *testing.T) {
    				c := &check{t, testCase.serverType}
    				suite := testCase
    
    				openIDServer := os.Getenv(EnvTestOpenIDServer)
    				if openIDServer == "" {
    					c.Skip("Skipping OpenID test as no OpenID server is provided.")
    				}
    
    				suite.SetUpSuite(c)
    				suite.SetUpOpenID(c, openIDServer, "")
    				suite.TestOpenIDSTS(c)
    				suite.TestOpenIDSTSDurationSeconds(c)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

                      "already exists, removing it and recreating it")
          $hns_network | Remove-HnsNetwork
          $hns_network = $null
        }
        else {
          Log-Output ("Skip: initial '$INITIAL_HNS_NETWORK' HNS network " +
                      "already exists, not recreating it")
          return
        }
      }
      Log-Output ("Creating initial HNS network to force creation of " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_test.go

    	checkCRIPodSwapStats(assert, p3, infos[sandbox3Cgroup].Stats[0])
    }
    
    func TestListPodStatsStrictlyFromCRI(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		// TODO: remove skip once the failing test has been fixed.
    		t.Skip("Skip failing test on Windows.")
    	}
    	ctx := context.Background()
    	var (
    		imageFsMountpoint = "/test/mount/point"
    		unknownMountpoint = "/unknown/mount/point"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    	var followset uint64 = 1 << _EOF // don't skip over EOF
    	if len(followlist) > 0 {
    		if p.fnest > 0 {
    			followset |= stopset
    		}
    		for _, tok := range followlist {
    			followset |= 1 << tok
    		}
    	}
    
    	for !contains(followset, p.tok) {
    		if trace {
    			p.print("skip " + p.tok.String())
    		}
    		p.next()
    		if len(followlist) == 0 {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    		"--sysroot",
    		"-target",
    	}
    
    	var flags []string
    	keep := false
    	skip := false
    	for _, f := range argv {
    		if keep {
    			flags = append(flags, f)
    			keep = false
    		} else if skip {
    			skip = false
    		} else if f == "" || f[0] != '-' {
    		} else if contains(flagsWithNextArgSkip, f) {
    			skip = true
    		} else if contains(flagsWithNextArgKeep, f) {
    			flags = append(flags, f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top