Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 213 for example2 (0.44 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        }
    
        @Override
        protected boolean resolveNestedClass(ClassNode type) {
            if (type instanceof ConstructedNestedClass) {
                return false;
            }
            // we have for example a class name A, are in class X
            // and there is a nested class A$X. we want to be able
            // to access that class directly, so A becomes a valid
            // name in X.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

                                   [Pure,
                                    AttrSizedResultSegments,
                                    AttrSizedOperandSegments]> {
    
      let summary =
        "Transforms a vector of tf.Example protos (as strings) into typed tensors.";
    
      let arguments = (ins
        TF_StrTensor:$serialized,
        TF_StrTensor:$names,
        Variadic<TF_StrTensor>:$sparse_keys,
        Variadic<TF_StrTensor>:$dense_keys,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    }
    
    // Lowers AddN op to a sequence of AddV2 ops to accumulate operands.
    //
    // Note that to improve the parallelism, AddN op uses tree-based reduction.
    // For example, tf.AddN([0, 1, 2, 3, 4]) behaves as follows:
    //
    //                 0     1     2     3     4
    //                 |     |     |     |     |
    //                 -------     -------     |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "group": {
                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
                "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                            from components.java
                        }
                    }
                }
            """)
    
            file("src/test/java/com/example/SampleTest.java") << """
                package com.example;
    
                import org.junit.Test;
    
                public class SampleTest {
                    @Test
                    public void checkSomething() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	// The install suffix specifies a suffix to use in the name of the installation
    	// directory. By default it is empty, but custom builds that need to keep
    	// their outputs separate can set InstallSuffix to do so. For example, when
    	// using the race detector, the go command uses InstallSuffix = "race", so
    	// that on a Linux/386 system, packages are written to a directory named
    	// "linux_386_race" instead of the usual "linux_386".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    	if r < relation(len(relationStrings)) {
    		return relationStrings[r]
    	}
    	return fmt.Sprintf("relation(%d)", uint(r))
    }
    
    // domain represents the domain of a variable pair in which a set
    // of relations is known. For example, relations learned for unsigned
    // pairs cannot be transferred to signed pairs because the same bit
    // representation can mean something else.
    type domain uint
    
    const (
    	signed domain = 1 << iota
    	unsigned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Use sign/zero extend instead of ANDW.
    (ANDWconst [0x00ff] x) => (MOVBZreg x)
    (ANDWconst [0xffff] x) => (MOVHZreg x)
    
    // Strength reduce multiplication to the sum (or difference) of two powers of two.
    //
    // Examples:
    //     5x -> 4x + 1x
    //    10x -> 8x + 2x
    //   120x -> 128x - 8x
    //  -120x -> 8x - 128x
    //
    // We know that the rightmost bit of any positive value, once isolated, must either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    			`<host><extra2>B</extra2></host>` +
    			`</service>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &Service{Port: &Port{Number: "80"}, Extra2: "example"},
    		ExpectXML: `<service>` +
    			`<host><port>80</port></host>` +
    			`<host><extra2>example</extra2></host>` +
    			`</service>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &struct {
    			XMLName struct{} `xml:"space top"`
    			A       string   `xml:"x>a"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    	// the ever-changing layout of the heap.
    	retainExtraPercent = 10
    
    	// reduceExtraPercent represents the amount of memory under the limit
    	// that the scavenger should target. For example, 5 means we target 95%
    	// of the limit.
    	//
    	// The purpose of shooting lower than the limit is to ensure that, once
    	// close to the limit, the scavenger is working hard to maintain it. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top