Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for Combine (0.27 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

         * @return the list of indy modes
         */
        def indyModes() {
            return [true, false]
        }
    
        final def testCasesWithIndyModes() {
            // Combine each test case with enableIndy=true and/or enableIndy=false
            return [testCases(), indyModes()].combinations().collect { it.flatten() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    // SRDconst on PPC64 is an extended mnemonic of RLDICL. If the input to an
    // RLDICL is an SRDconst, and the RLDICL does not rotate its value, the two
    // operations can be combined. This functions assumes the two opcodes can
    // be merged, and returns an encoded rotate+mask value of the combined RLDICL.
    func mergePPC64RLDICLandSRDconst(encoded, s int64) int64 {
    	mb := s
    	r := 64 - s
    	// A larger mb is a smaller mask.
    	if (encoded>>8)&0xFF < mb {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. maven-core/pom.xml

        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
                <excludes combine.children="append">
                  <exclude>lifecycle-executor.txt</exclude>
                  <exclude>plugin-manager.txt</exclude>
                  <exclude>project-builder.txt</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    // use.
    const DisableGatewayPortTranslationLabel = "experimental.istio.io/disable-gateway-port-translation"
    
    // MergeGateways combines multiple gateways targeting the same workload into a single logical Gateway.
    // Note that today any Servers in the combined gateways listening on the same port must have the same protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    			}
    			c.connChange.Wait()
    			select {
    			case <-ctx.Done():
    				c.connChange.L.Unlock()
    				return
    			default:
    			}
    		}
    		c.connChange.L.Unlock()
    		if len(queue) == 0 {
    			// Combine writes.
    			buf.Reset()
    			err := wsw.writeMessage(&buf, c.side, ws.OpBinary, toSend)
    			if err != nil {
    				if !xnet.IsNetworkOrHostDown(err, true) {
    					gridLogIf(ctx, fmt.Errorf("ws writeMessage: %w", err))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. pom.xml

            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                  <systemPropertyVariables combine.children="append">
                    <property>
                      <!-- Pass this through to the tests (if set!) to have them pick the right repository -->
                      <name>maven.repo.local</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                              absl::flat_hash_set<Node*>* control_ret_nodes) {
      mlir::StatusScopedDiagnosticHandler sh(module.getContext());
      if (failed(VerifyExportSuitable(module))) return sh.ConsumeStatus();
      return sh.Combine(
          Exporter::Convert(module, configs, graph, flib_def, control_ret_nodes));
    }
    
    Status ConvertMlirToGraph(mlir::ModuleOp module,
                              const GraphExportConfig& configs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/build.gradle

            compositeBuildsHierarchicalMultirepo {
                sampleDirectory = samplesRoot.dir("build-organization/composite-builds/hierarchical-multirepo")
                description = "Defining and using a composite build to combine multiple independent builds."
                category = "Build organization"
            }
    
            compositeBuildsPluginDevelopment {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_test.go

    		g.Expect(a.Metadata().Description).ToNot(Equal(""))
    	}
    }
    
    func setupAnalyzerForCase(tc testCase, cr local.CollectionReporterFn) (*local.IstiodAnalyzer, error) {
    	sa := local.NewSourceAnalyzer(analysis.Combine("testCase", tc.analyzer), "", "istio-system", cr)
    
    	// If a mesh config file is specified, use it instead of the defaults
    	if tc.meshConfigFile != "" {
    		err := sa.AddFileKubeMeshConfig(tc.meshConfigFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    (Sub32F ...) => (FSUBS ...)
    (Sub64F ...) => (FSUB ...)
    
    (Min(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMINJDP x y)
    (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)
    
    // Combine 64 bit integer multiply and adds
    (ADD l:(MULLD x y) z) && buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l) => (MADDLD x y z)
    
    (Mod16 x y) => (Mod32 (SignExt16to32 x) (SignExt16to32 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top