Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 210 for growing (0.15 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://patcg-individual-drafts.github.io/topics/">{@code
       * Sec-Browsing-Topics}</a> header field name.
       *
       * @since 32.0.0
       */
      public static final String SEC_BROWSING_TOPICS = "Sec-Browsing-Topics";
      /**
       * The HTTP <a href="https://patcg-individual-drafts.github.io/topics/">{@code
       * Observe-Browsing-Topics}</a> header field name.
       *
       * @since 32.0.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    // Copyright 2014 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.
    
    package sha3
    
    // spongeDirection indicates the direction bytes are flowing through the sponge.
    type spongeDirection int
    
    const (
    	// spongeAbsorbing indicates that the sponge is absorbing input.
    	spongeAbsorbing spongeDirection = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/image/draw/bench_test.go

    	"image/color"
    	"reflect"
    	"testing"
    )
    
    const (
    	dstw, dsth = 640, 480
    	srcw, srch = 400, 300
    )
    
    var palette = color.Palette{
    	color.Black,
    	color.White,
    }
    
    // bench benchmarks drawing src and mask images onto a dst image with the
    // given op and the color models to create those images from.
    // The created images' pixels are initialized to non-zero values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/profile-dump.go

    	}
    	if err := json.Unmarshal(uglyJSON, &decoded); err != nil {
    		return []string{}, err
    	}
    	if d, ok := decoded.(map[string]any); ok {
    		if v, ok := d["spec"]; ok {
    			// Fall back to showing the entire spec.
    			// (When --config-path is used there will be no spec to remove)
    			decoded = v
    		}
    	}
    	setflags, err := walk("", "", decoded)
    	if err != nil {
    		return []string{}, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *          Javadoc description provided.<br>
     *          <i>NOTE: While this is not a required part of the Mojo specification, it <b>SHOULD</b> be provided to
     *          enable future tool support for browsing, etc. and for clarity.</i>
     *      </td>
     *   </tr>
     *   <tr>
     *      <td>parameters</td>
     *      <td>N/A</td>
     *      <td>No</td>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/cc/ops/while_loop.cc

            ToOutputTensor(cond_out), ToOutputTensors(switch_trues),
            ToOutputTensors(body_outputs), &while_ctx));
    
        // Set while_ctx for all exit nodes. We currently don't require knowing the
        // while_ctx for any other nodes.
        for (size_t i = 0; i < num_loop_vars; ++i) {
          (*outputs)[i].node()->set_while_ctx(while_ctx);
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            } catch (NoSuchMethodException e) {
                if (value) {
                    throw new InvalidUserDataException("Grouping tests by instances is not supported by this version of TestNG.");
                }
            }
        }
    
        private void setThreadPoolFactoryClass(TestNG testNg, String threadPoolFactoryClass) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/crypto/x509/pkix/pkix.go

    	ExtraNames []AttributeTypeAndValue
    }
    
    // FillFromRDNSequence populates n from the provided [RDNSequence].
    // Multi-entry RDNs are flattened, all entries are added to the
    // relevant n fields, and the grouping is not preserved.
    func (n *Name) FillFromRDNSequence(rdns *RDNSequence) {
    	for _, rdn := range *rdns {
    		if len(rdn) == 0 {
    			continue
    		}
    
    		for _, atv := range rdn {
    			n.Names = append(n.Names, atv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    include::sample[dir="snippets/kotlinDsl/configuring-plugins-imperatively-applied/groovy",files="build.gradle[]"]
    ====
    
    Again, we strongly recommend that you apply plugins declaratively via the `plugins {}` block.
    
    .Knowing what plugin-provided extensions are available
    --
    Because your IDE knows about the configuration elements that a plugin provides, it will include those elements when you ask your IDE for suggestions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/nodes_test.go

    type test struct {
    	nodetyp string
    	snippet string
    }
    
    var decls = []test{
    	// The position of declarations is always the
    	// position of the first token of an individual
    	// declaration, independent of grouping.
    	{"ImportDecl", `import @"math"`},
    	{"ImportDecl", `import @mymath "math"`},
    	{"ImportDecl", `import @. "math"`},
    	{"ImportDecl", `import (@"math")`},
    	{"ImportDecl", `import (@mymath "math")`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top