Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for haxe (0.14 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getBuildDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (Project.java:0)
    Method <org.gradle.api.Project.getBuildFile()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Fatalf("Manager should not have an error %v", err)
    			}
    			// we should have disk pressure (because transition period not yet met)
    			if !manager.IsUnderDiskPressure() {
    				t.Fatalf("Manager should report disk pressure")
    			}
    
    			// no pod should have been killed
    			if podKiller.pod != nil {
    				t.Fatalf("Manager chose to kill pod: %v when no pod should have been killed", podKiller.pod.Name)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        PredOpTrait<"sparse_values and dense must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 2>>,
        PredOpTrait<"default_value and dense must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 3>>,
        TFL_OperandHasRankAtMost<0, 2>,
        TFL_OperandHasRankAtMost<1, 1>,
        TFL_OperandHasRankAtMost<2, 1>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{all operands and results to have compatible element}}
      %0 = "tf.Identity"(%arg0) : (tensor<4x2x!tf_type.string>) -> tensor<4x2x!tf_type.stringref>
      func.return %0 : tensor<4x2x!tf_type.stringref>
    }
    
    // -----
    
    // TODO(hinsu): Move this to MLIR core once the test dialect have a custom type.
    
    // Check that broadcastable trait accepts TF specific element type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
      if (op.getSparseIndices().size() != sparse_types_count) {
        return op.emitError() << "output 'sparse_indices' should have same length "
                              << "as attribute 'sparse_types'";
      }
      if (op.getSparseShapes().size() != sparse_types_count) {
        return op.emitError() << "output 'sparse_shapes' should have same length "
                              << "as attribute 'sparse_types'";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated server certificate"))
    		}
    		if tls.PrivateKey != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated private key"))
    		}
    		if tls.CaCertificates != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated CA bundle"))
    		}
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. fastapi/routing.py

                bool,
                Doc(
                    """
                    Configuration passed to Pydantic to define if the response data
                    should have all the fields, including the ones that were not set and
                    have their default values. This is different from
                    `response_model_exclude_defaults` in that if the fields are set,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. fastapi/applications.py

                bool,
                Doc(
                    """
                    Configuration passed to Pydantic to define if the response data
                    should have all the fields, including the ones that were not set and
                    have their default values. This is different from
                    `response_model_exclude_defaults` in that if the fields are set,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	// Complete termination of deleted pods that are not runtime pods (don't have
    	// running containers), are terminal, and are not known to pod workers.
    	// An example is pods rejected during kubelet admission that have never
    	// started before (i.e. does not have an orphaned pod).
    	// Adding the pods with SyncPodKill to pod workers allows to proceed with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (!shaped_type || !shaped_type.hasRank()) {
          // Marks that we have an unknown rank input.
          has_unknown_shape_input = true;
          continue;
        }
        max_rank = std::max(max_rank, shaped_type.getRank());
        if (!shaped_type.hasStaticShape()) {
          // Marks that we have an unknown shape input.
          has_unknown_shape_input = true;
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top