Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Interpret (0.14 sec)

  1. cmd/handler-api.go

    	}
    	if err != nil {
    		return 0
    	}
    	limit, err = strconv.ParseUint(strings.TrimSpace(string(buf)), 10, 64)
    	if err != nil {
    		// The kernel can return valid but non integer values
    		// but still, no need to interpret more
    		return 0
    	}
    	if limit == cgroupMemNoLimit {
    		// No limit set, It's the highest positive signed 64-bit
    		// integer (2^63-1), rounded down to multiples of 4096 (2^12),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    							PluginName:     "fooPlugin2",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    						{
    							// The hint fn tells that this event makes a Pod scheudlable.
    							// Given fooPlugin1 is registered as Pendings, we interpret Queue as queueImmediately.
    							PluginName:     "fooPlugin1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    			HTTPStatusCode: apiErr.HTTPStatusCode,
    		}
    	case "XMinioBackendDown":
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, err)
    	case "InternalError":
    		// If we see an internal error try to interpret
    		// any underlying errors if possible depending on
    		// their internal error types.
    		switch e := err.(type) {
    		case kms.Error:
    			apiErr = APIError{
    				Code:           e.APICode,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    		if err != nil {
    			return nil, time.Time{}, err
    		}
    		return nil, time.Time{}, errFileNotFound
    	}
    
    	return buf, dmTime, nil
    }
    
    // ReadXL reads from path/xl.meta, does not interpret the data it read. This
    // is a raw call equivalent of ReadVersion().
    func (s *xlStorage) ReadXL(ctx context.Context, volume, path string, readData bool) (RawFileInfo, error) {
    	volumeDir, err := s.getVolDir(volume)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUDynamicLayoutPass()";
      let description = [{
        A pass that allows TPU input layout to be determined after JIT compilation.
        This is done by adding run-time ops that interpret compilation result and
        copy the input to device with that layout.
    
        Example: original program:
    
        ```mlir
          %input = "tf.IteratorGetNext"(...) {device = "/CPU:0"}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    					flag = append(flag, '\\', c)
    					escaped = false
    					continue
    				}
    			}
    
    			if c == '\n' {
    				// “If a <newline> follows the <backslash>, the shell shall interpret
    				// this as line continuation.”
    			} else {
    				flag = append(flag, c)
    			}
    			escaped = false
    			continue
    		}
    
    		if quote != 0 && c == quote {
    			quote = 0
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/time/format.go

    		}
    	}
    	return parse(layout, value, UTC, Local)
    }
    
    // ParseInLocation is like Parse but differs in two important ways.
    // First, in the absence of time zone information, Parse interprets a time as UTC;
    // ParseInLocation interprets the time as in the given location.
    // Second, when given a zone offset or abbreviation, Parse tries to match it
    // against the Local location; ParseInLocation uses the given location.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    			if hint == framework.QueueSkip {
    				continue
    			}
    
    			if pInfo.PendingPlugins.Has(hintfn.PluginName) {
    				// interprets Queue from the Pending plugin as queueImmediately.
    				// We can return immediately because queueImmediately is the highest priority.
    				return queueImmediately
    			}
    
    			// interprets Queue from the unschedulable plugin as queueAfterBackoff.
    
    			if pInfo.PendingPlugins.Len() == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top