Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for EXISTS (0.17 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

            <field xdoc.separator="blank">
              <name>parent</name>
              <version>4.0.0+</version>
              <description>The location of the parent project, if one exists. Values from the parent
                project will be the default for this project if they are left unspecified. The location
                is given as a group ID, artifact ID and version.</description>
              <association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		The file is a JSON struct with a single field, named 'Replace', that
    //		maps each disk file path (a string) to its backing file path, so that
    //		a build will run as if the disk file path exists with the contents
    //		given by the backing file paths, or as if the disk file path does not
    //		exist if its backing file path is empty. Support for the -overlay flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
    
        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
            converted_model.signatures._signatures.keys(), {'serving_default'}
        )
    
        # Test whether the aliased function exists.
        output_loader = saved_model_loader.SavedModelLoader(
            self._output_saved_model_path
        )
    
        # Confirm that the function alias is preserved.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    double GetBiasScale(const double input_scale, const double filter_scale) {
      return filter_scale * input_scale;
    }
    
    // Returns the optionally broadcasted bias constant op used for a given op.
    // If no such constant op exists, returns a nullptr.
    Operation* GetBiasConstOp(Operation* op) {
      Operation* bias_const_op;
      if (Operation* broadcast_in_dim_op =
              FindOperandOfType<stablehlo::BroadcastInDimOp>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    				sendEvent(eventArgs{
    					EventName:  event.ObjectReplicationNotTracked,
    					BucketName: bucket,
    					Object:     objInfo,
    					UserAgent:  "Internal: [Replication]",
    					Host:       globalLocalNodeName,
    				})
    			}
    			// object with same VersionID already exists, replication kicked off by
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Escr;":                            "\u2130",
    	"&Esim;":                            "\u2a73",
    	"&Eta;":                             "\u0397",
    	"&Euml;":                            "\u00cb",
    	"&Exists;":                          "\u2203",
    	"&ExponentialE;":                    "\u2147",
    	"&Fcy;":                             "\u0424",
    	"&Ffr;":                             "\U0001d509",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    							nssSvcs[ns] = map[string]bool{}
    						}
    
    						// test/a
    						// test/a
    						// test/*
    						if svc != "*" {
    							if _, ok := nssSvcs[ns][svc]; ok || nssSvcs[ns]["*"] {
    								// already exists
    								// TODO: prevent this invalid setting, maybe in 1.12+
    								errs = AppendValidation(errs, WrapWarning(fmt.Errorf("duplicated egress host: %s", hostname)))
    							}
    						} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    	clusters := cg.Clusters(proxy)
    	xdstest.ValidateClusters(t, clusters)
    	g.Expect(xdstest.MapKeys(xdstest.ExtractClusters(clusters))).To(Equal([]string{
    		"BlackHoleCluster", "InboundPassthroughCluster", "PassthroughCluster", security.SDSExternalClusterName,
    	}))
    
    	// Expect no sds_external cluster be added if if credentialSocket does NOT exists
    	proxy = cg.SetupProxy(nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // Check (1).
      if (!AreCastCompatible({then_tensor, else_tensor}))
        return op.emitOpError() << "requires t and e have compatible shapes";
    
      // Get data rank (if exists).
      int data_rank;
      // If data is unranked or data_rank is 0, this will remain -2. Otherwise
      // refers to first dimension of then and/or else.
      int64_t data_first_dim = -2;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    	ignorePolicy       = v1.NodeInclusionPolicyIgnore
    	honorPolicy        = v1.NodeInclusionPolicyHonor
    	fooSelector        = st.MakeLabelSelector().Exists("foo").Obj()
    	barSelector        = st.MakeLabelSelector().Exists("bar").Obj()
    
    	taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectNoSchedule}}
    )
    
    func (p *criticalPaths) sort() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top