Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,431 for tuning (0.07 sec)

  1. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  2. src/log/syslog/syslog_test.go

    		t.Fatalf("LOG_LOCAL7 has wrong value")
    	}
    	if testing.Short() {
    		// Depends on syslog daemon running, and sometimes it's not.
    		t.Skip("skipping syslog test during -short")
    	}
    
    	s, err := New(LOG_INFO|LOG_USER, "the_tag")
    	if err != nil {
    		if err.Error() == "Unix syslog delivery error" {
    			t.Skip("skipping: syslogd not running")
    		}
    		t.Fatalf("New() failed: %s", err)
    	}
    	// Don't send any messages.
    	s.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. architecture/standards/0002-avoid-using-java-serialization.md

    # ADR-0002 - Avoid using Java serialization
    
    ## Date
    
    2012-12-01
    
    ## Context
    
    In Gradle we often need to serialize in-memory objects for caching, or to transmit them across process barriers, etc.
    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1beta1/types.go

    	// database by the API server during CronJob validation and the controller manager during execution.
    	// If no system-wide time zone database can be found a bundled version of the database is used instead.
    	// If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/node/v1/types.go

    	// with this RuntimeClass are scheduled to nodes that support it.
    	// If scheduling is nil, this RuntimeClass is assumed to be supported by all
    	// nodes.
    	// +optional
    	Scheduling *Scheduling `json:"scheduling,omitempty" protobuf:"bytes,4,opt,name=scheduling"`
    }
    
    // Overhead structure represents the resource overhead associated with running a pod.
    type Overhead struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // database by the API server during CronJob validation and the controller manager during execution.
      // If no system-wide time zone database can be found a bundled version of the database is used instead.
      // If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/CalculatedTaskInputFileCollectionTest.groovy

            when:
            fileCollection.files
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'Can only query <files> while task :task is running'
        }
    
        def "caches the result during task execution"() {
            def calculated = Mock(MinimalFileSet)
            def files = [new File("f1")] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/clusterinformations-crd.yaml

                  the cluster.
                properties:
                  calicoVersion:
                    description: CalicoVersion is the version of Calico that the cluster
                      is running
                    type: string
                  clusterGUID:
                    description: ClusterGUID is the GUID of the cluster
                    type: string
                  clusterType:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  9. testing/performance/README.md

    Running all the tests at once will be resource-intensive and long (multiple hours).
    However, you can find instructions for running a single performance test at the top of each Graph page.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/runtime/race/output_test.go

    Previous write at 0x[0-9,a-f]+ by main goroutine:
      main\.store\(\)
          .+/main\.go:14 \+0x[0-9,a-f]+
      main\.main\(\)
          .+/main\.go:10 \+0x[0-9,a-f]+
    
    Goroutine [0-9] \(running\) created at:
      main\.startRacer\(\)
          .+/main\.go:19 \+0x[0-9,a-f]+
      main\.main\(\)
          .+/main\.go:9 \+0x[0-9,a-f]+
    ==================
    Found 1 data race\(s\)
    exit status 66
    `}},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top