Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 278 for mode_ (0.05 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public MavenProject() {
            Model model = new Model();
    
            model.setGroupId(EMPTY_PROJECT_GROUP_ID);
            model.setArtifactId(EMPTY_PROJECT_ARTIFACT_ID);
            model.setVersion(EMPTY_PROJECT_VERSION);
    
            setModel(model);
        }
    
        public MavenProject(org.apache.maven.api.model.Model model) {
            this(new Model(model));
        }
    
        public MavenProject(Model model) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

    import org.apache.maven.api.model.Repository;
    import org.apache.maven.api.model.Resource;
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblem.Severity;
    import org.apache.maven.model.building.ModelProblem.Version;
    import org.apache.maven.model.building.ModelProblemCollector;
    import org.apache.maven.model.building.ModelProblemCollectorRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.apache.maven.model.building.ArtifactModelSource;
    import org.apache.maven.model.building.DefaultModelProblem;
    import org.apache.maven.model.building.FileModelSource;
    import org.apache.maven.model.building.ModelSource2;
    import org.apache.maven.model.building.ModelSource3;
    import org.apache.maven.model.resolution.UnresolvableModelException;
    import org.apache.maven.model.root.RootLocator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    			},
    		}
    	}
    	return nil
    }
    
    func hashForService(push *model.PushContext,
    	node *model.Proxy,
    	svc *model.Service,
    	port *model.Port,
    ) (*networking.LoadBalancerSettings_ConsistentHashLB, *model.ConsolidatedDestRule) {
    	if push == nil {
    		return nil, nil
    	}
    	mergedDR := node.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, node, svc.Hostname)
    	destinationRule := mergedDR.GetRule()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        """Creates a simple model that initializes a table from an asset file.
    
        This model creates an asset file at "vocab_file.txt" containing
        comma-separated vocabularies and uses it to initialize a
        `StaticVocabularyTable`. For inference, the model performs a lookup with a
        1D string tensor input vocabs.
    
        Args:
          sess: Tensorflow Session to create the model in.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    			shouldSucceed: true,
    		},
    		"old no mode, new mode": {
    			oldClass:      noBinding,
    			newClass:      waitBinding,
    			shouldSucceed: false,
    		},
    		"old mode, new no mode": {
    			oldClass:      waitBinding,
    			newClass:      noBinding,
    			shouldSucceed: false,
    		},
    		"old and new different modes": {
    			oldClass:      waitBinding,
    			newClass:      immediateBinding1,
    			shouldSucceed: false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_logging_test.go

    			{
    				Match: &tpb.AccessLogging_LogSelector{
    					Mode: tpb.WorkloadMode_CLIENT,
    				},
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy",
    					},
    				},
    			},
    		},
    	}
    	clientDisabled := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Match: &tpb.AccessLogging_LogSelector{
    					Mode: tpb.WorkloadMode_CLIENT,
    				},
    				Providers: []*tpb.ProviderRef{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

    import org.apache.maven.api.model.Exclusion;
    import org.apache.maven.api.model.InputLocation;
    import org.apache.maven.api.model.InputLocationTracker;
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.model.Parent;
    import org.apache.maven.api.model.Plugin;
    import org.apache.maven.api.model.PluginExecution;
    import org.apache.maven.api.model.PluginManagement;
    import org.apache.maven.api.model.Profile;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top