Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for crack (0.04 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    // be used. Subsequent uses of v will use the restored value c instead.
    //
    // What remains is the question of where to schedule the spill.
    // During allocation, we keep track of the dominator of all restores of v.
    // The spill of v must dominate that block. The spill must also be issued at
    // a point where v is still in a register.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                                      int /*iteration*/) {}
      virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {}
    };
    
    // TestEventListeners lets users add listeners to track events in Google Test.
    class GTEST_API_ TestEventListeners {
     public:
      TestEventListeners();
      ~TestEventListeners();
    
      // Appends an event listener to the end of the list. Google Test assumes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

                                      int /*iteration*/) {}
      virtual void OnTestProgramEnd(const UnitTest& /*unit_test*/) {}
    };
    
    // TestEventListeners lets users add listeners to track events in Google Test.
    class GTEST_API_ TestEventListeners {
     public:
      TestEventListeners();
      ~TestEventListeners();
    
      // Appends an event listener to the end of the list. Google Test assumes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// As a result, configuration updates should never be incremental. Generally, only EDS will set this, but
    	// in the future SDS will as well.
    	Full bool
    
    	// ConfigsUpdated keeps track of configs that have changed.
    	// This is used as an optimization to avoid unnecessary pushes to proxies that are scoped with a Sidecar.
    	// If this is empty, then all proxies will get an update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. go.sum

    github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
    github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
    github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY=
    github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    		return
    	}
    
    	// The value of proxier.needFullSync may change before the defer funcs run, so
    	// we need to keep track of whether it was set at the *start* of the sync.
    	tryPartialSync := !proxier.needFullSync
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    	defer func() {
    		metrics.SyncProxyRulesLatency.Observe(metrics.SinceInSeconds(start))
    		if tryPartialSync {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    // The most recently updated element in the array is considered the latest version.
    
    // In addition to these we have a special kind called free-version. This is represented
    // using a delete-marker and MetaSys entries. It's used to track tiered content of a
    // deleted/overwritten version. This version is visible _only_to the scanner routine, for subsequent deletion.
    // This kind of tracking is necessary since a version's tiered content is deleted asynchronously.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    //
    // For the former, the goal is defined as:
    //   (retainExtraPercent+100) / 100 * (heapGoal / lastHeapGoal) * lastHeapInUse
    //
    // Essentially, we wish to have the application's RSS track the heap goal, but
    // the heap goal is defined in terms of bytes of objects, rather than pages like
    // RSS. As a result, we need to take into account for fragmentation internal to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    					},
    					{MaxSkew: 2,
    						TopologyKey:       "rack",
    						WhenUnsatisfiable: v1.DoNotSchedule,
    					},
    					{MaxSkew: 2, TopologyKey: "planet", WhenUnsatisfiable: v1.ScheduleAnyway},
    				},
    				DefaultingType: config.ListDefaulting,
    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("rack", "rack1").Label(v1.LabelHostname, "node-a").Label("planet", "mars").Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            0 * childService.close()
        }
    
        /*
         * We isolate services in child registries, so we don't leak memory. This test makes
         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top