Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stringText (0.23 sec)

  1. cmd/site-replication.go

    	return maxPrio + 10
    }
    
    // returns a slice with site names participating in site replciation but unspecified while adding
    // a new site.
    func getMissingSiteNames(oldDeps, newDeps set.StringSet, currSites []madmin.PeerInfo) []string {
    	diff := oldDeps.Difference(newDeps)
    	var diffSlc []string
    	for _, v := range currSites {
    		if diff.Contains(v.DeploymentID) {
    			diffSlc = append(diffSlc, v.Name)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    			t.Errorf("%d: %s exported=%v, want %v", i, typ.Name(), got, test.want)
    		}
    	}
    }
    
    func TestTypeStrings(t *testing.T) {
    	type stringTest struct {
    		typ  Type
    		want string
    	}
    	stringTests := []stringTest{
    		{TypeOf(func(int) {}), "func(int)"},
    		{FuncOf([]Type{TypeOf(int(0))}, nil, false), "func(int)"},
    		{TypeOf(XM{}), "reflect_test.XM"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/ScopeExit.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/StringSet.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top