Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for IsSkip (0.13 sec)

  1. 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 (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if f_name in self._op_defs:
          return self._op_defs[f_name]
    
        if isinstance(func_def, types.FunctionType):
          if not hasattr(func_def, '_tfr_op_name'):
            # skip a non-composition function
            if optional:
              return (None, None)
            else:
              raise KeyError('OpDef does not exist: ' + f_name)
          op_name = getattr(func_def, '_tfr_op_name')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/strings/strings_test.go

    	for i := 0; i < b.N; i++ {
    		Trim(x, " ")
    	}
    }
    
    func BenchmarkIndexPeriodic(b *testing.B) {
    	key := "aa"
    	for _, skip := range [...]int{2, 4, 8, 16, 32, 64} {
    		b.Run(fmt.Sprintf("IndexPeriodic%d", skip), func(b *testing.B) {
    			s := Repeat("a"+Repeat(" ", skip-1), 1<<16/skip)
    			for i := 0; i < b.N; i++ {
    				Index(s, key)
    			}
    		})
    	}
    }
    
    func BenchmarkJoin(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    	// localhost TCP connection, the peer TCP connection can
    	// immediately read it. Because it's racy, we skip this test
    	// in short mode, and then retry it several times with an
    	// increasing sleep in between our final write (via srv.Close
    	// below) and the following read.
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	var err error
    	for delay := time.Millisecond; delay <= 64*time.Millisecond; delay *= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top