Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for pats (0.04 sec)

  1. cmd/object-api-datatypes_gen.go

    		}
    		switch msgp.UnsafeString(field) {
    		case "Parts":
    			var zb0002 uint32
    			zb0002, bts, err = msgp.ReadArrayHeaderBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Parts")
    				return
    			}
    			if cap(z.Parts) >= int(zb0002) {
    				z.Parts = (z.Parts)[:zb0002]
    			} else {
    				z.Parts = make([]CompletePart, zb0002)
    			}
    			for za0001 := range z.Parts {
    				bts, err = z.Parts[za0001].UnmarshalMsg(bts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterable<String> list = Lists.newArrayList("cool", "pants");
        Iterator<String> iterator = list.iterator();
        assertEquals("pants", Iterators.find(iterator, Predicates.equalTo("pants")));
        assertFalse(iterator.hasNext());
      }
    
      public void testFind_notPresent() {
        Iterable<String> list = Lists.newArrayList("cool", "pants");
        Iterator<String> iterator = list.iterator();
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	}
    	if allParts {
    		fi.Parts = make([]ObjectPartInfo, len(j.PartNumbers))
    		for i := range fi.Parts {
    			fi.Parts[i].Number = j.PartNumbers[i]
    			fi.Parts[i].Size = j.PartSizes[i]
    			if len(j.PartETags) == len(fi.Parts) {
    				fi.Parts[i].ETag = j.PartETags[i]
    			}
    			fi.Parts[i].ActualSize = j.PartActualSizes[i]
    			if len(j.PartIndices) == len(fi.Parts) {
    				fi.Parts[i].Index = j.PartIndices[i]
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    #include "mlir/IR/UseDefLists.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			deadline:                   noDead,
    			jobCreationTime:            justAfterThePriorHour(),
    			now:                        *justAfterTheHour(),
    			jobPresentInCJActiveStatus: true,
    		},
    		"never ran, is time, past deadline": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			deadline:                   shortDead,
    			jobCreationTime:            justAfterThePriorHour(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                             /*successors=*/false);
    
      // Locate which variable inputs are part of the forwards pass. These will
      // also be used in the backwards pass. We need to create a 'private' copy
      // of the TpuReplicatedInput for for the fowards pass if there are users
      // outside the pass. Note that in the case of the backwards pass existing
      // this will be the case.
      // This means that when we have put all out sections together some resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    	}
    
    	var healOnce sync.Once
    
    	for ; partIndex <= lastPartIndex; partIndex++ {
    		if length == totalBytesRead {
    			break
    		}
    
    		partNumber := fi.Parts[partIndex].Number
    
    		// Save the current part name and size.
    		partSize := fi.Parts[partIndex].Size
    
    		partLength := partSize - partOffset
    		// partLength should be adjusted so that we don't write more data than what was requested.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    
    	return &targetStatus.ID, nil
    }
    
    func calcRestartCountByLogDir(path string) (int, error) {
    	// if the path doesn't exist then it's not an error
    	if _, err := os.Stat(path); err != nil {
    		return 0, nil
    	}
    	files, err := os.ReadDir(path)
    	if err != nil {
    		return 0, err
    	}
    	if len(files) == 0 {
    		return 0, nil
    	}
    	restartCount := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	}
    
    	type pathMode struct {
    		path string
    		mode os.FileMode
    	}
    	var dirs []pathMode // in lexical order
    
    	undo = func() {
    		for i := range dirs {
    			os.Chmod(dirs[i].path, dirs[i].mode) // best effort
    		}
    	}
    
    	filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
    		if suffix := strings.TrimPrefix(path, dir+string(filepath.Separator)); suffix != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/go/build/build.go

    			tried.goroot = dir
    		}
    
    		// package was not found
    		var paths []string
    		format := "\t%s (vendor tree)"
    		for _, dir := range tried.vendor {
    			paths = append(paths, fmt.Sprintf(format, dir))
    			format = "\t%s"
    		}
    		if tried.goroot != "" {
    			paths = append(paths, fmt.Sprintf("\t%s (from $GOROOT)", tried.goroot))
    		} else {
    			paths = append(paths, "\t($GOROOT not set)")
    		}
    		format = "\t%s (from $GOPATH)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top