Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 179 for mcall (0.2 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	SIGXRES    = Signal(0x26)
    )
    
    // Error table
    var errors = [...]string{
    	1:   "not owner",
    	2:   "no such file or directory",
    	3:   "no such process",
    	4:   "interrupted system call",
    	5:   "I/O error",
    	6:   "no such device or address",
    	7:   "arg list too long",
    	8:   "exec format error",
    	9:   "bad file number",
    	10:  "no child processes",
    	11:  "resource temporarily unavailable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (SelectN [0] call:(CALLstatic {sym} dst src (MOVDconst [sz]) mem))
            && sz >= 0
            && isSameCall(sym, "runtime.memmove")
            && call.Uses == 1
            && isInlinableMemmove(dst, src, sz, config)
            && clobber(call)
            => (Move [sz] dst src mem)
    
    // Prefetch instructions (TH specified using aux field)
    // For DCBT Ra,Rb,TH, A value of TH indicates:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    				}
    				return
    			}
    			if tc.shouldFail {
    				t.Errorf("test should fail, but no error occurred")
    			}
    
    			// Verify call goes through all the way
    			numStaged := 1
    			if !tc.stageUnstageSet {
    				numStaged = 0
    			}
    
    			cdc := csiAttacher.csiClient.(*fakeCsiDriverClient)
    			staged := cdc.nodeClient.GetNodeStagedVolumes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          continue;
        }
        auto aliasing_arg = mlir::dyn_cast<BlockArgument>(retval);
        if (!aliasing_arg) {
          return callee.emitOpError("unsupported function call: ")
                 << "resource return value does not alias an input.";
        }
        result->old_outputs_aliasing_old_inputs[entry.index()] =
            aliasing_arg.getArgNumber();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. cmd/peer-rest-server.go

    	}
    	res := aoBucketInfo.New()
    	for i := range buckets {
    		bucket := buckets[i]
    		res.Append(&bucket)
    	}
    	return res, nil
    }
    
    // HeadBucketHandler implements peer BucketInfo call, returns bucket create date.
    func (s *peerRESTServer) HeadBucketHandler(mss *grid.MSS) (info *VolInfo, nerr *grid.RemoteErr) {
    	bucket := mss.Get(peerS3Bucket)
    	if isMinioMetaBucket(bucket) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                                 .WithAttr("dtype", DT_FLOAT));
    
        Node* call = ops::BinaryOp("FnWithResourceOp", resource, value,
                                   builder.opts().WithName("A"));
        Node* tanh0 = ops::UnaryOp("Tanh", call, builder.opts().WithName("tanh0"));
        Node* tanh1 = ops::UnaryOp("Tanh", tanh0, builder.opts().WithName("tanh1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "arg list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  8. src/time/time.go

    	nsecMask     = 1<<30 - 1
    	nsecShift    = 30
    )
    
    // These helpers for manipulating the wall and monotonic clock readings
    // take pointer receivers, even when they don't modify the time,
    // to make them cheaper to call.
    
    // nsec returns the time's nanoseconds.
    func (t *Time) nsec() int32 {
    	return int32(t.wall & nsecMask)
    }
    
    // sec returns the time's seconds since Jan 1 year 1.
    func (t *Time) sec() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. cmd/object-api-listobjects_test.go

    			if oi.DeleteMarker != object.addDeleteMarker {
    				t.Fatalf("Expected, marker %t : got %t", object.addDeleteMarker, oi.DeleteMarker)
    			}
    		}
    	}
    
    	// Formulating the result data set to be expected from ListObjects call inside the tests,
    	// This will be used in testCases and used for asserting the correctness of ListObjects output in the tests.
    
    	resultCases := []ListObjectsInfo{
    		{
    			IsTruncated: false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    		return nil
    	}
    
    	// Don't process a daemon set until all its creations and deletions have been processed.
    	// For example if daemon set foo asked for 3 new daemon pods in the previous call to manage,
    	// then we do not want to call manage on foo until the daemon pods have been created.
    	dsKey, err := controller.KeyFunc(ds)
    	if err != nil {
    		return fmt.Errorf("couldn't get key for object %#v: %v", ds, err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top