Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,884 for resets (0.2 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyContextManagerTest.groovy

                assert param.settings.is(ivySettings)
                assert IvyContext.context.ivy.is(ivy)
            }
    
            and:
            IvyContext.currentStack.empty()
        }
    
        def "resets Ivy settings on reuse"() {
            given:
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def ivy
            def ivySettings
    
            when:
            manager.withIvy(action1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/cache/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 Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/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 Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    }
    
    // Stream represents a bidirectional communications channel that is part of an
    // upgraded connection.
    type Stream interface {
    	io.ReadWriteCloser
    	// Reset closes both directions of the stream, indicating that neither client
    	// or server can use it any more.
    	Reset() error
    	// Headers returns the headers used to create the stream.
    	Headers() http.Header
    	// Identifier returns the stream's ID.
    	Identifier() uint32
    }
    
    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