Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 205 for composite_ (0.19 sec)

  1. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/basic")
                description = "Defining and using a composite build"
                category = "Build organization"
            }
    
            compositeBuildsDeclaredSubstitutions {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/declared-substitution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments.golden

    }
    
    var _ = []T{
    	// lone comments
    	// in composite lit
    }
    
    var _ = [][]T{
    	{
    		// lone comments
    		// in composite lit
    	},
    }
    
    // TODO: gofmt doesn't add these tabs; make it so that these golden
    // tests run the printer in a way that it's exactly like gofmt.
    
    var _ = []T{	// lone comment
    }
    
    var _ = []T{	// lone comments
    	// in composite lit
    }
    
    func _()	{}
    
    func _()	{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  3. src/runtime/race.go

    	kind := t.Kind_ & abi.KindMask
    	if kind == abi.Array || kind == abi.Struct {
    		// for composite objects we have to read every address
    		// because a write might happen to any subobject.
    		racereadrangepc(addr, t.Size_, callerpc, pc)
    	} else {
    		// for non-composite objects we can read just the start
    		// address, as any write must write the first byte.
    		racereadpc(addr, callerpc, pc)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

                    if (parentId.isPresent()) {
                        Object candidateId = parentId.get().getId();
                        if (candidateId instanceof CompositeIdGenerator.CompositeId) {
                            return createNestedTestSuite(node, displayName, (CompositeIdGenerator.CompositeId) candidateId);
                        }
                    }
                }
                if (node.getType().isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/go/printer/testdata/comments.input

    }
    
    var _ = []T{
    // lone comments
    // in composite lit
    }
    
    var _ = [][]T{
    	{
    		// lone comments
    		// in composite lit
    	},
    }
    
    // TODO: gofmt doesn't add these tabs; make it so that these golden
    // tests run the printer in a way that it's exactly like gofmt.
    
    var _ = []T{// lone comment
    }
    
    var _ = []T{// lone comments
    // in composite lit
    }
    
    func _() {}
    
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      }
      return false;
    }
    
    /* Resources may be merged with an execute op when they are on its device or a
     * `COMPOSITE`. Note that a `COMPOSITE` represents a set of devices, they
     * are typically associated with packed variables. Presently, we assume this
     * set spans all the devices. So, a variable on a `COMPOSITE` will have a local
     * instance on the execute op's device.
     */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

        }
      }
    }
    
    bool IsCompositeDevice(mlir::Attribute attr) {
      const auto str_attr = attr.dyn_cast_or_null<mlir::StringAttr>();
      return str_attr &&
             (str_attr.getValue().find("COMPOSITE") != llvm::StringRef::npos);
    }
    }  // namespace
    
    // Rewrites unpartitioned resource reads and writes to partitioned resource
    // reads and writes. The TPU computation from the frontend is generated in such
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

                }
            """
    
            plugin.file('src/main/resources/META-INF/gradle-plugins/com.company.composite.properties') << """
                implementation-class=org.gradle.test.CompositePlugin
            """
    
            plugin.build()
    
            buildFile << """
                plugins {
                    id "com.company.composite"
                }
            """
    
            when:
            def result = runner('helloWorld1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("project 'sub' not found in project ':other-build'.")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
            file('lib/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/go/printer/testdata/declarations.input

    			"cap": nil,
    			"len": nil,
    			"new": nil,
    			"make": nil,
    			"panic": nil,
    			"panicln": nil,
    			"print": nil,
    			"println": nil,
    		},
    	}
    }
    
    
    // alignment of map composite entries
    var _ = map[int]int{
    	// small key sizes: always align even if size ratios are large
    	a: a,
    	abcdefghabcdefgh: a,
    	ab: a,
    	abc: a,
    	abcdefgabcdefg: a,
    	abcd: a,
    	abcde: a,
    	abcdef: a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
Back to top