Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for getNames (0.22 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          return failure();
        }
        auto sum_op = dyn_cast_or_null<TFL::SumOp>(log_op.getX().getDefiningOp());
        if (!sum_op || !sum_op.getKeepDims() ||
            !isSupportedAxis(
                sum_op.getAxes(),
                mlir::cast<ShapedType>(sum_op.getOperand(0).getType()).getRank())) {
          return failure();
        }
        if (!sum_op->hasOneUse()) {
          return failure();
        }
        auto exp_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      bool users_same_op = llvm::all_of(op->getUsers(), [&](Operation *user) {
        return user->getName() == first_user->getName();
      });
      if (!users_same_op) return failure();
    
      // Pass unpack operand to unary operation.
      OperationState new_unary_op_state(loc, first_user->getName().getStringRef(),
                                        op.getOperand(), op.getOperand().getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    		g.Expect(rootSdsConfig.GetName()).To(Equal("file-root:/clientRootCertFromNodeMetadata.pem"))
    
    		certSdsConfig := tlsContext.CommonTlsContext.GetTlsCertificateSdsSecretConfigs()
    		g.Expect(certSdsConfig).To(HaveLen(1))
    		g.Expect(certSdsConfig[0].GetName()).To(Equal("file-cert:/clientCertFromNodeMetadata.pem~/clientKeyFromNodeMetadata.pem"))
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	generatedMeta, err := meta.Accessor(generated)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if generatedMeta.GetName() != "prefix-7" {
    		t.Errorf("Expected prefix-7 but got %s", generatedMeta.GetName())
    	}
    
    	// Now that 8 generated names (0..7) are claimed, 8 name generation attempts will not be enough
    	// and create should return an already exists error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    		defer tc.Unlock()
    
    		getForAction, wasGetFor := action.(cmfake.GetForAction)
    		if !wasGetFor {
    			return true, nil, fmt.Errorf("expected a get-for action, got %v instead", action)
    		}
    
    		if getForAction.GetName() == "*" {
    			metrics := &cmapi.MetricValueList{}
    
    			// multiple objects
    			assert.Equal(t, "pods", getForAction.GetResource().Resource, "the type of object that we requested multiple metrics for should have been pods")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    					if action.GetNamespace() != "" {
    						s += " ns=" + action.GetNamespace()
    					}
    					if get, ok := action.(clientgotesting.GetAction); ok && get.GetName() != "" {
    						s += " name=" + get.GetName()
    					}
    					actualClientActions = append(actualClientActions, s)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        inferredReturnTypes.assign({result_type});
        return success();
      }
    
      // Default to non-time_major.
      std::optional<mlir::NamedAttribute> time_major_attr =
          attr.getNamed("time_major");
      bool time_majored =
          time_major_attr ? time_major_attr->getValue().cast<BoolAttr>().getValue()
                          : false;
    
      int64_t batch =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        TestFile getGcFile() {
            return cacheDir.file("gc.properties")
        }
    
        TestFile getCacheDir() {
            return getGradleVersionedCacheDir().file(CacheLayout.TRANSFORMS.getName())
        }
    
        void writeLastTransformationAccessTimeToJournal(TestFile workspaceDir, long millis) {
            writeLastFileAccessTimeToJournal(workspaceDir, millis)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    .metadata; public synchronized class Plugin implements java.io.Serializable { private String name; private String prefix; private String artifactId; private String modelEncoding; public void Plugin(); public String getArtifactId(); public String getName(); public String getPrefix(); public void setArtifactId(String); public void setName(String); public void setPrefix(String); public void setModelEncoding(String); public String getModelEncoding(); } org/apache/maven/artifact/repository/metadata/R...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			var j *batch.Job
    			err = wait.PollUntilContextTimeout(ctx, 200*time.Microsecond, 3*time.Second, true, func(ctx context.Context) (done bool, err error) {
    				j, err = clientset.BatchV1().Jobs(metav1.NamespaceDefault).Get(ctx, job.GetName(), metav1.GetOptions{})
    				if err != nil {
    					return false, err
    				}
    				return j.Status.StartTime != nil, nil
    			})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top