Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 524 for unprocessed (0.25 sec)

  1. src/go/doc/testdata/testing.2.golden

    	func (c *B) Logf(format string, args ...any)
    
    	// ResetTimer sets the elapsed benchmark time to zero. It does not ...
    	func (b *B) ResetTimer()
    
    	// SetBytes records the number of bytes processed in a single ...
    	func (b *B) SetBytes(n int64)
    
    	// StartTimer starts timing a test. This function is called ...
    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. src/go/doc/testdata/examples/README.md

    These files are processed by example_test.go:TestExamples.
    
    A .golden file is a txtar file with two sections for each example that should be
    created by doc.Examples from the corresponding .go file.
    
    One section, named EXAMPLE_NAME.Output, contains the example's output,
    the value of the field Example.Output.
    
    The other, named EXAMPLE_NAME.Play, contains the formatted code for a playable
    version of the example, the value of the field Example.Play.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 506 bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/testdata/g.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Input for TestTypeNamingOrder
    
    // ensures that the order in which "type A B" declarations are
    // processed is correct; this was a problem for unified IR imports.
    
    package g
    
    type Client struct {
    	common service
    	A      *AService
    	B      *BService
    }
    
    type service struct {
    	client *Client
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 30 00:27:25 UTC 2022
    - 498 bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/middleware.md

    A "middleware" is a function that works with every **request** before it is processed by any specific *path operation*. And also with every **response** before returning it.
    
    * It takes each **request** that comes to your application.
    * It can then do something to that **request** or run any needed code.
    * Then it passes the **request** to be processed by the rest of the application (by some *path operation*).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/cover/testdata/directives.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file is processed by the cover command, then a test verifies that
    // all compiler directives are preserved and positioned appropriately.
    
    //go:a
    
    //go:b
    package main
    
    //go:c1
    
    //go:c2
    //doc
    func c() {
    }
    
    //go:d1
    
    //doc
    //go:d2
    type d int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 23:38:38 UTC 2017
    - 502 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/defaultDependency/kotlin/buildSrc/src/main/java/org/myorg/DataProcessingPlugin.java

                c.setVisible(false);
                c.setCanBeConsumed(false);
                c.setCanBeResolved(true);
                c.setDescription("The data artifacts to be processed for this plugin.");
                c.defaultDependencies(d -> d.add(project.getDependencies().create("org.myorg:data:1.4.6")));
            });
    
            project.getTasks().withType(DataProcessing.class).configureEach(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 830 bytes
    - Viewed (0)
  7. src/go/doc/testdata/testing.0.golden

    	func (c *B) Logf(format string, args ...any)
    
    	// ResetTimer sets the elapsed benchmark time to zero. It does not ...
    	func (b *B) ResetTimer()
    
    	// SetBytes records the number of bytes processed in a single ...
    	func (b *B) SetBytes(n int64)
    
    	// StartTimer starts timing a test. This function is called ...
    	func (b *B) StartTimer()
    
    	// StopTimer stops timing a test. This can be used to pause the ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

         * @return set of projects that have yet to be processed successfully by the build.
         */
        public Set<MavenProject> getUnfinishedProjects() {
            Set<MavenProject> unfinished = new HashSet<>(projectBuilds.getProjects());
            unfinished.removeAll(finishedProjects);
            return unfinished;
        }
    
        /**
         * @return set of projects that have been successfully processed by the build.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/policy/v1/generated.proto

      optional int64 observedGeneration = 1;
    
      // DisruptedPods contains information about pods whose eviction was
      // processed by the API server eviction subresource handler but has not
      // yet been observed by the PodDisruptionBudget controller.
      // A pod will be in this map from the time when the API server processed the
      // eviction request to the time when the pod is seen by PDB controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/internal/bytealg/index_arm64.go

    	MaxLen = 32
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	// 1 error per 16 characters, plus a few slop to start.
    	return 4 + n>>4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 05:45:33 UTC 2019
    - 706 bytes
    - Viewed (0)
Back to top