Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for popf (0.04 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def res_slice(self, ns, types_ns, node_or_slice, value, slice_):
        if not value:
          return value
    
        if isinstance(value, set):
          type_tuple = value.pop()
          if isinstance(type_tuple, tuple):
            value = {type_tuple[node_or_slice]}
          else:
            value = {type_tuple}
    
        assert len(value) == 1
        value, = tuple(value)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/text/template/exec.go

    	s.vars = append(s.vars, variable{name, value})
    }
    
    // mark returns the length of the variable stack.
    func (s *state) mark() int {
    	return len(s.vars)
    }
    
    // pop pops the variable stack up to the mark.
    func (s *state) pop(mark int) {
    	s.vars = s.vars[0:mark]
    }
    
    // setVar overwrites the last declared variable with the given name.
    // Used by variable assignments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. src/runtime/cgocall.go

    //
    // _cgoexp_GoF, which was generated by cmd/cgo, unpacks the arguments
    // from frame, calls p.GoF, writes the results back to frame, and
    // returns. Now we start unwinding this whole process.
    //
    // runtime.cgocallbackg pops but does not execute the deferred
    // function to unwind m.g0.sched.sp, calls runtime.entersyscall, and
    // returns to runtime.cgocallback.
    //
    // After it regains control, runtime.cgocallback switches back to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tape.h

        // executions not forwarded to backward_tape should be ignored.
        bool accumulating;
      };
      // A deque-backed stack, whose element references are not invalidated by
      // pushes and pops at the back.
      std::stack<AccumulatorCallState> call_state_;
    };
    
    // Template instantiations here
    
    inline bool IsDtypeTrainable(DataType dtype) {
      switch (dtype) {
        case DT_HALF:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	Push(wr http2FrameWriteRequest)
    
    	// Pop dequeues the next frame to write. Returns false if no frames can
    	// be written. Frames with a given wr.StreamID() are Pop'd in the same
    	// order they are Push'd, except RST_STREAM frames. No frames should be
    	// discarded except by CloseStream.
    	Pop() (wr http2FrameWriteRequest, ok bool)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    			Func:      f,
    			Function:  funcNameForPrint(sf.name()),
    			Entry:     entry,
    			startLine: int(sf.startLine),
    			funcInfo:  funcInfo,
    			// Note: File,Line set below
    		})
    	}
    
    	// Pop one frame from the frame list. Keep the rest.
    	// Avoid allocation in the common case, which is 1 or 2 frames.
    	switch len(ci.frames) {
    	case 0: // In the rare case when there are no frames at all, we return Frame{}.
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. helm-releases/minio-3.1.2.tgz

    rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/" configPathmc: "/etc/minio/mc/" ## Path where PV would be mounted on the MinIO Pod mountPath: "/export" ## Override the root directory which the minio server should serve from. ## If left empty, it defaults to the value...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 18 04:26:47 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  8. helm-releases/minio-3.1.4.tgz

    rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/" configPathmc: "/etc/minio/mc/" ## Path where PV would be mounted on the MinIO Pod mountPath: "/export" ## Override the root directory which the minio server should serve from. ## If left empty, it defaults to the value...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 20 05:30:22 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  9. helm-releases/minio-3.1.5.tgz

    rootPassword | rootPassword | ## ## All mentioned variables will be ignored in values file. ## .data.rootUser and .data.rootPassword are mandatory, ## others depend on enabled status of corresponding sections. existingSecret: "" ## Directory on the MinIO pof certsPath: "/etc/minio/certs/" configPathmc: "/etc/minio/mc/" ## Path where PV would be mounted on the MinIO Pod mountPath: "/export" ## Override the root directory which the minio server should serve from. ## If left empty, it defaults to the value...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 22 16:52:01 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    		ident.Obj = scope.Lookup(ident.Name)
    		if ident.Obj == nil && p.mode&DeclarationErrors != 0 {
    			p.error(ident.Pos(), fmt.Sprintf("label %s undefined", ident.Name))
    		}
    	}
    	// pop label scope
    	p.targetStack = p.targetStack[0:n]
    	p.labelScope = p.labelScope.Outer
    }
    
    func (p *parser) declare(decl any, scope *ast.Scope, kind ast.ObjKind, idents ...*ast.Ident) {
    	for _, ident := range idents {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top