Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 751 for Combine (0.18 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

              <defaults>
                <parent>child</parent>
                <child>child</child>
              </defaults>
              <appends combine.children="append">
                <parent>child</parent>
                <child>child</child>
              </appends>
              <overrides combine.self="override">
                <parent>child</parent>
                <child>child</child>
              </overrides>
            </configuration>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

      if (failed(pass_manager.run(module))) {
        return status_handler.Combine(
            absl::InvalidArgumentError("VHLO lowering failed"));
      }
    
      if (!tflite::MlirToFlatBufferTranslateFunction(
              module, options, &translated_result, serialize_stablehlo_ops)) {
        return status_handler.Combine(
            absl::InternalError("Could not translate MLIR to FlatBuffer."));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

        List<@Nullable Present<V>> localValues = values;
        if (localValues != null) {
          set(combine(localValues));
        }
      }
    
      @Override
      void releaseResources(ReleaseResourcesReason reason) {
        super.releaseResources(reason);
        this.values = null;
      }
    
      abstract C combine(List<@Nullable Present<V>> values);
    
      /** Used for {@link Futures#allAsList} and {@link Futures#successfulAsList}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. .github/workflows/test.yml

          - name: Store coverage files
            uses: actions/upload-artifact@v4
            with:
              name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
              path: coverage
    
      coverage-combine:
        needs: [test]
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/all.go

    	}
    	return analyzers
    }
    
    // AllCombined returns all analyzers combined as one
    func AllCombined() analysis.CombinedAnalyzer {
    	return analysis.Combine("all", All()...)
    }
    
    // AllMultiClusterCombined returns all multi-cluster analyzers combined as one
    func AllMultiClusterCombined() analysis.CombinedAnalyzer {
    	return analysis.Combine("all-multi-cluster", AllMultiCluster()...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
      return BaseScopedDiagnosticHandler::ConsumeStatus();
    }
    
    Status StatusScopedDiagnosticHandler::Combine(Status status) {
      absl::Status absl_s = BaseScopedDiagnosticHandler::Combine(status);
    
      return absl_s;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. docs/debugging/xl-meta/main.go

    		},
    		cli.BoolFlag{
    			Usage: "combine inline data",
    			Name:  "combine",
    		},
    		cli.BoolFlag{
    			Usage: "combine inline data across versions when size matches",
    			Name:  "xver",
    		},
    	}
    
    	app.Action = func(c *cli.Context) error {
    		ndjson := c.Bool("ndjson")
    		if c.Bool("data") && c.Bool("combine") {
    			return errors.New("cannot combine --data and --combine")
    		}
    		// file / version / file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. scripts/test-cov-html.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    bash scripts/test.sh ${@}
    coverage combine
    coverage report --show-missing
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 03 20:00:29 UTC 2022
    - 124 bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

              <stringParams combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. pkg/apis/rbac/helpers.go

    	r.PolicyRule.Resources = combine(r.PolicyRule.Resources, resources)
    	return r
    }
    
    // Names combines the PolicyRule.ResourceNames and input names.
    func (r *PolicyRuleBuilder) Names(names ...string) *PolicyRuleBuilder {
    	r.PolicyRule.ResourceNames = combine(r.PolicyRule.ResourceNames, names)
    	return r
    }
    
    // URLs combines the PolicyRule.NonResourceURLs and input urls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
Back to top