Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 314 for mixer (0.26 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenMixedDependenciesValidator.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.graph.Dependency;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects mixed Maven versions in plugins.
     *
     * @since 3.9.2
     */
    @Singleton
    @Named
    class MavenMixedDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/kms/multiple-providers-mixed.yaml

    Rita Zhang <******@****.***> 1698166245 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 22:05:31 UTC 2023
    - 367 bytes
    - Viewed (0)
  3. tests/test_response_model_include_exclude.py

        }
    
    
    @app.get(
        "/mixed",
        response_model=Model3,
        response_model_include={"ref2", "name"},
        response_model_exclude={"ref2": {"baz"}},
    )
    def mixed():
        return Model3(
            name="mixed model3 name",
            age=3,
            ref2=Model2(
                ref=Model1(foo="mixed model foo", bar="mixed model bar"),
                baz="mixed model2 baz",
            ),
        )
    
    
    @app.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jul 19 19:14:58 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

        targetPort: 8080
    ---
    # Service is mixed mode(clusterIP and headless), should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-mode
      namespace: my-namespace
    spec:
      clusterIP: 1.2.3.4
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed type, should generate warning.
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/RegExpPatternStepTest.java

            RegExpPatternStep step = new RegExpPatternStep("MiXeD", true);
            assertTrue(step.matches("MiXeD"));
            assertFalse(step.matches("mixed"));
    
            step = new RegExpPatternStep("MiXeD", false);
            assertTrue(step.matches("MiXeD"));
            assertTrue(step.matches("mixed"));
    
            step = new RegExpPatternStep("MiXeD?", true);
            assertTrue(step.matches("MiXeD1"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

        port: 8080
        targetPort: 8080
    ---
    # Service is mixed type, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-type
      namespace: my-namespace
    spec:
      type: LoadBalancer
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed mode(clusterIP and headless), should generate warning.
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             },
             "id": 1,
             "panels": [ ],
             "title": "Process",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Version number of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/pilot-dashboard.gen.json

             "id": 1,
             "panels": [ ],
             "title": "Deployed Versions",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Version number of each running instance",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/internal/types/testdata/examples/inference.go

    	_ = min(s, "foo")
    	_ = min("foo", "bar")
    }
    
    func mixed[T1, T2, T3 any](T1, T2, T3) {}
    
    func _() {
    	// mixed can be called with explicit instantiation.
    	mixed[int, string, bool](0, "", false)
    
    	// Alternatively, partial type arguments may be provided
    	// (from left to right), and the other may be inferred.
    	mixed[int, string](0, "", false)
    	mixed[int](0, "", false)
    	mixed(0, "", false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                currentThread.setName("mvn-builder-" + threadNameSuffix);
    
                try {
                    // muxer.associateThreadWithProjectSegment( projectBuild );
                    lifecycleModuleBuilder.buildProject(
                            projectBuild.getSession(), rootSession, reactorContext, project, taskSegment);
                    // muxer.setThisModuleComplete( projectBuild );
    
                    return projectBuild;
                } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top