Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for mapfn (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    func SetMapReduce[Elt comparable, Result, Accumulator any](mapFn func(Elt) Result, reduceFn func(Accumulator, Result) Accumulator) func(map[Elt]sets.Empty) Accumulator {
    	return func(set map[Elt]sets.Empty) Accumulator {
    		var ans Accumulator
    		for elt := range set {
    			ans = reduceFn(ans, mapFn(elt))
    		}
    		return ans
    	}
    }
    
    // SliceMapReduce is map-reduce starting from a slice.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/expr.go

    	var mapFn ir.Node
    	switch {
    	case n.Assigned:
    		mapFn = mapfn(mapassign[fast], t, false)
    	case t.Elem().Size() > abi.ZeroValSize:
    		args = append(args, reflectdata.ZeroAddr(t.Elem().Size()))
    		mapFn = mapfn("mapaccess1_fat", t, true)
    	default:
    		mapFn = mapfn(mapaccess1[fast], t, false)
    	}
    	call := mkcall1(mapFn, nil, init, args...)
    	call.SetType(types.NewPtr(t.Elem()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/walk.go

    	case 2:
    		return typecheck.LookupRuntime(name, t.Elem(), t.Elem())
    	}
    	base.Fatalf("chanfn %d", n)
    	return nil
    }
    
    func mapfn(name string, t *types.Type, isfat bool) ir.Node {
    	if !t.IsMap() {
    		base.Fatalf("mapfn %v", t)
    	}
    	if mapfast(t) == mapslow || isfat {
    		return typecheck.LookupRuntime(name, t.Key(), t.Elem(), t.Key(), t.Elem())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    	//   a = *var
    	a := n.Lhs[0]
    
    	var call *ir.CallExpr
    	if w := t.Elem().Size(); w <= abi.ZeroValSize {
    		fn := mapfn(mapaccess2[fast], t, false)
    		call = mkcall1(fn, fn.Type().ResultsTuple(), init, reflectdata.IndexMapRType(base.Pos, r), r.X, key)
    	} else {
    		fn := mapfn("mapaccess2_fat", t, true)
    		z := reflectdata.ZeroAddr(w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/testing/fstest/mapfs.go

    // is redundant and unnecessary, but having the methods may make
    // MapFS exercise more code paths when used in tests.)
    type fsOnly struct{ fs.FS }
    
    func (fsys MapFS) ReadFile(name string) ([]byte, error) {
    	return fs.ReadFile(fsOnly{fsys}, name)
    }
    
    func (fsys MapFS) Stat(name string) (fs.FileInfo, error) {
    	return fs.Stat(fsOnly{fsys}, name)
    }
    
    func (fsys MapFS) ReadDir(name string) ([]fs.DirEntry, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/testing/fstest/mapfs_test.go

    a/b.txt: -rw-rw-rw-
    `[1:]
    	got := buf.String()
    	if want != got {
    		t.Errorf("MapFS modes want:\n%s\ngot:\n%s\n", want, got)
    	}
    }
    
    func TestMapFSFileInfoName(t *testing.T) {
    	m := MapFS{
    		"path/to/b.txt": &MapFile{},
    	}
    	info, _ := m.Stat("path/to/b.txt")
    	want := "b.txt"
    	got := info.Name()
    	if want != got {
    		t.Errorf("MapFS FileInfo.Name want:\n%s\ngot:\n%s\n", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 14:59:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.h

      llvm::ArrayRef<mlir::Operation*> bound_inputs;
    };
    
    // Apply `map_fn` on every exported function in the module with the
    // corresponding signature metadata populated in TFRTSavedModelSignatureInfo for
    // the function.
    Status MapFunctionSignaturesFromTFSavedModelMLIR(
        mlir::ModuleOp module,
        llvm::function_ref<void(const TFRTSavedModelSignatureInfo&)> map_fn);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 17:42:41 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.cc

    Status MapFunctionSignaturesFromTFSavedModelMLIR(
        mlir::ModuleOp module,
        llvm::function_ref<void(const TFRTSavedModelSignatureInfo&)> map_fn) {
      // Create bound inputs for each functions.
      mlir::SymbolTable symbol_table(module);
      tensorflow::Status status = absl::OkStatus();
      module.walk([&symbol_table, map_fn, &status](mlir::func::FuncOp func) {
        // Use the exported name as the function name, and skip non-exported
        // functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/testing/fstest/testfs_test.go

    		t.Fatal(err)
    	}
    }
    
    func TestDash(t *testing.T) {
    	m := MapFS{
    		"a-b/a": {Data: []byte("a-b/a")},
    	}
    	if err := TestFS(m, "a-b/a"); err != nil {
    		t.Error(err)
    	}
    }
    
    type shuffledFS MapFS
    
    func (fsys shuffledFS) Open(name string) (fs.File, error) {
    	f, err := MapFS(fsys).Open(name)
    	if err != nil {
    		return nil, err
    	}
    	return &shuffledFile{File: f}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/mdo/java/ImmutableCollections.java

                    public int size() {
                        return 1;
                    }
                };
            }
        }
    
        private static class MapN<K, V> extends AbstractImmutableMap<K, V> {
            private final Object[] entries;
    
            private MapN(Map<K, V> map) {
                if (map != null) {
                    entries = new Object[map.size()];
                    int idx = 0;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top