Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 525 for COUNTER (0.68 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    var _ deprecatedCertificateAttributeChecker = &missingSANChecker{}
    
    type missingSANChecker struct {
    	counterRaiser
    }
    
    func NewSANDeprecatedChecker(counter *metrics.Counter) *missingSANChecker {
    	return &missingSANChecker{
    		counterRaiser: counterRaiser{
    			counter: counter,
    			id:      "missing-san",
    			reason:  "relies on a legacy Common Name field instead of the SAN extension for subject validation",
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. pkg/proxy/util/nfacct/nfacct_linux.go

    			return nil, handleError(err)
    		}
    	}
    	return counter, nil
    }
    
    // List is part of the interface.
    func (r *runner) List() ([]*Counter, error) {
    	req := r.handler.newRequest(cmdGet, unix.NLM_F_REQUEST|unix.NLM_F_DUMP)
    	msgs, err := req.Execute(unix.NETLINK_NETFILTER, 0)
    	if err != nil {
    		return nil, handleError(err)
    	}
    
    	counters := make([]*Counter, 0)
    	for _, msg := range msgs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emit.go

    	mf     *os.File // open os.File for meta-data temp file
    	cfname string   // path of final counter data file
    	cftmp  string   // path to counter data temp file
    	cf     *os.File // open os.File for counter data file
    	outdir string   // output directory
    
    	// List of meta-data symbols obtained from the runtime
    	metalist []rtcov.CovMetaBlob
    
    	// List of counter-data symbols obtained from the runtime
    	counterlist []rtcov.CovCounterBlob
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoLimit.java

         */
        @Input
        String getCounter();
    
        /**
         * Sets the counter that applies to the limit.
         *
         * @param counter Counter
         */
        void setCounter(String counter);
    
        /**
         * The value that applies to the limit as defined by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/internal/coverage/pods/pods.go

    // each meta-data file M_k, then find all of the counter data files
    // that refer to that meta-data file (recall that the counter data
    // file name incorporates the meta-data hash), and add the counter
    // data file to the appropriate pod.
    //
    // This process is complicated by the fact that we need to keep track
    // of directory indices for counter data files. Here is an example to
    // motivate:
    //
    //	directory 1:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    				clk:                    clk,
    				counter:                counter,
    				dontDump:               true,
    			}.exercise(t)
    		})
    	}
    }
    
    func TestBaseline(t *testing.T) {
    	metrics.Register()
    	now := time.Now()
    
    	clk, counter := testeventclock.NewFake(now, 0, nil)
    	qsf := newTestableQueueSetFactory(clk, countingPromiseFactoryFactory(counter))
    	qCfg := fq.QueuingConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. src/cmd/cover/testdata/main.go

    // It knows the coverage counter is called
    // "thisNameMustBeVeryLongToCauseOverflowOfCounterIncrementStatementOntoNextLineForTest".
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func main() {
    	testAll()
    	verify()
    }
    
    type block struct {
    	count uint32
    	line  uint32
    }
    
    var counters = make(map[block]bool)
    
    // shorthand for the long counter variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 16:40:40 UTC 2016
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/dynamic/groovy/build.gradle

    4.times { counter ->
        tasks.register("task$counter") {
            doLast {
                println "I'm task number $counter"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 140 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            customTaskUsingServiceViaProperty("@${ServiceReference.name}('counter')")
            buildFile """
                gradle.sharedServices.registerIfAbsent("counter", CountingService) {
                    parameters.initial = 10
                    maxParallelUsages = 1
                }
    
                task named(type: Consumer) {
                    counter.get().increment()
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

        }
    
        def "runs side effect when calling '#method' on changing provider"() {
            given:
            def sideEffect = Mock(ValueSupplier.SideEffect)
            def counter = new AtomicInteger(23)
            def parent = Providers.changing { counter.getAndIncrement() }
            def provider = parent.withSideEffect(sideEffect)
    
            when:
            provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top