Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 186 for resptr (0.13 sec)

  1. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    		d := make([]byte, s.outputLen, 64)
    		klmd(s.function, &a, d, s.buf)
    		return append(b, d[:s.outputLen]...)
    	default:
    		panic("sha3: unknown function")
    	}
    }
    
    // Reset resets the Hash to its initial state.
    func (s *asmState) Reset() {
    	for i := range s.a {
    		s.a[i] = 0
    	}
    	s.resetBuf()
    	s.state = spongeAbsorbing
    }
    
    // Size returns the number of bytes Sum will return.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    // Returns 0 if there are no more pointers available.
    //
    // This prefers non-conservative pointers so we scan stack objects
    // precisely if there are any non-conservative pointers to them.
    func (s *stackScanState) getPtr() (p uintptr, conservative bool) {
    	for _, head := range []**stackWorkBuf{&s.buf, &s.cbuf} {
    		buf := *head
    		if buf == nil {
    			// Never had any data.
    			continue
    		}
    		if buf.nobj == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    		resOpts, err := cm.draManager.GetResources(pod, container)
    		if err != nil {
    			return nil, err
    		}
    		// NOTE: Passing CDI device names as annotations is a temporary solution
    		// It will be removed after all runtimes are updated
    		// to get CDI device names from the ContainerConfig.CDIDevices field
    		opts.Annotations = append(opts.Annotations, resOpts.Annotations...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            DEPRECATED_FEATURE_HANDLER.init(warningMode, buildOperationProgressEventEmitter, problemsService, problemStream);
        }
    
        public synchronized static void reset() {
            DEPRECATED_FEATURE_HANDLER.reset();
        }
    
        public synchronized static void reportSuppressedDeprecations() {
            DEPRECATED_FEATURE_HANDLER.reportSuppressedDeprecations();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    }
    
    // RecordDecodeError sets the storage_decode_errors metrics.
    func RecordDecodeError(resource string) {
    	decodeErrorCounts.WithLabelValues(resource).Inc()
    }
    
    // Reset resets the etcd_request_duration_seconds metric.
    func Reset() {
    	etcdRequestLatency.Reset()
    }
    
    // sinceInSeconds gets the time since the specified start in seconds.
    //
    // This is a variable to facilitate testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadstore.go

    				if node == nil {
    					node = n
    				} else if node != n {
    					// Most of the time we only see one pointer
    					// reaching an op, but some ops can take
    					// multiple pointers (e.g. NeqPtr, Phi etc.).
    					// This is rare, so just propagate the first
    					// value to keep things simple.
    					used.Add(n)
    					changed = true
    				}
    			}
    		}
    		if node == nil {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/MD4.java

         */
        public Object clone() { return new MD4(this); }
    
    
    // JCE methods
    //...........................................................................
    
        /**
         * Resets this object disregarding any temporary data present at the
         * time of the invocation of this call.
         */
        public void engineReset () {
            // initial values of MD4 i.e. A, B, C, D
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  8. src/compress/lzw/writer.go

    			w.bits >>= 24
    		}
    		if err := w.w.WriteByte(uint8(w.bits)); err != nil {
    			return err
    		}
    	}
    	return w.w.Flush()
    }
    
    // Reset clears the [Writer]'s state and allows it to be reused again
    // as a new [Writer].
    func (w *Writer) Reset(dst io.Writer, order Order, litWidth int) {
    	*w = Writer{}
    	w.init(dst, order, litWidth)
    }
    
    // NewWriter creates a new [io.WriteCloser].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    		PreStartRequired:                m.preStartContainerFlag,
    		GetPreferredAllocationAvailable: m.getPreferredAllocationFlag,
    	}
    	return options, nil
    }
    
    // PreStartContainer resets the devices received
    func (m *Stub) PreStartContainer(ctx context.Context, r *pluginapi.PreStartContainerRequest) (*pluginapi.PreStartContainerResponse, error) {
    	klog.InfoS("PreStartContainer", "request", r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

                    // It can also happen for some other custom exceptions that wrap CircularEvaluationException and call its getMessage inside their.
                    // This is why we resort to losing the information and only providing exception class.
                    // A well-behaved toString should not throw anyway.
                    return owner.getClass().getName() + " (toString failed with " + e.getClass() + ")";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (1)
Back to top