Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 389 for Resets (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

        // A separate property, as the public getter does not use a wildcard type and cannot be overridden
        List<? extends IncludedBuildInternal> includedBuilds();
    
        /**
         * Resets the lifecycle for this Gradle object.
         */
        void resetState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    }
    
    // APIVersion of the object that we're tracking.
    func (f *TestFieldManagerImpl) APIVersion() string {
    	return f.apiVersion
    }
    
    // Reset resets the state of the liveObject by resetting it to an empty object.
    func (f *TestFieldManagerImpl) Reset() {
    	f.liveObj = f.emptyObj.DeepCopyObject()
    }
    
    // Live returns a copy of the current liveObject.
    func (f *TestFieldManagerImpl) Live() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics.go

    	return &ValidatingAdmissionPolicyMetrics{policyCheck: check, policyDefinition: definition, policyLatency: latency}
    }
    
    // Reset resets all validation admission-related Prometheus metrics.
    func (m *ValidatingAdmissionPolicyMetrics) Reset() {
    	m.policyCheck.Reset()
    	m.policyDefinition.Reset()
    	m.policyLatency.Reset()
    }
    
    // ObserveDefinition observes a policy definition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/runtime/tracemap.go

    	*(*notInHeapSlice)(unsafe.Pointer(&meta.data)) = sl
    	meta.id = id
    	meta.hash = hash
    	return meta
    }
    
    // reset drops all allocated memory from the table and resets it.
    //
    // The caller must ensure that there are no put operations executing concurrently
    // with this function.
    func (tab *traceMap) reset() {
    	tab.root.Store(nil)
    	tab.seq.Store(0)
    	tab.mem.drop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    // Acceptable values for mode are "on", "off", or "local".
    //
    // SetMode always writes the mode file, and explicitly records the date at
    // which the modefile was updated. This means that calling SetMode with "on"
    // effectively resets the timeout before the next telemetry report is uploaded.
    func (d Dir) SetMode(mode string) error {
    	return d.SetModeAsOf(mode, time.Now())
    }
    
    // SetModeAsOf is like SetMode, but accepts an explicit time to use to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/LongAdder.java

        }
        return sum;
      }
    
      /**
       * Resets variables maintaining the sum to zero. This method may be a useful alternative to
       * creating a new adder, but is only effective if there are no concurrent updates. Because this
       * method is intrinsically racy, it should only be used when it is known that no threads are
       * concurrently updating.
       */
      public void reset() {
        internalReset(0L);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/LongAdder.java

        }
        return sum;
      }
    
      /**
       * Resets variables maintaining the sum to zero. This method may be a useful alternative to
       * creating a new adder, but is only effective if there are no concurrent updates. Because this
       * method is intrinsically racy, it should only be used when it is known that no threads are
       * concurrently updating.
       */
      public void reset() {
        internalReset(0L);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // implemented by c.
    func (c Caser) String(s string) string {
    	s, _, _ = transform.String(c.t, s)
    	return s
    }
    
    // Reset resets the Caser to be reused for new input after a previous call to
    // Transform.
    func (c Caser) Reset() { c.t.Reset() }
    
    // Transform implements the transform.Transformer interface and transforms the
    // given input to the case form implemented by c.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/next_pluggable_device/c_api.h

    TF_CAPI_EXPORT extern void TF_CreateAndSetPjRtCApiClient(
        const char* device_type, TF_Status* status, PJRT_NamedValue* create_options,
        int num_options);
    
    // Resets the PjRt client for a device. After this, `TF_GetPjRtCClient` will
    // returns an error for that device.
    TF_CAPI_EXPORT extern void TF_ResetPjRtCClient(const char* device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	// CreateStream creates a new Stream with the supplied headers.
    	CreateStream(headers http.Header) (Stream, error)
    	// Close resets all streams and closes the connection.
    	Close() error
    	// CloseChan returns a channel that is closed when the underlying connection is closed.
    	CloseChan() <-chan bool
    	// SetIdleTimeout sets the amount of time the connection may remain idle before
    	// it is automatically closed.
    	SetIdleTimeout(timeout time.Duration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top