Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for deduplicated (0.2 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
    
        int buffer_index = buffers_.size();
        // If a constant is returned as subgraph's output, this constant cannot be
        // deduplicated.
        const bool not_returned_by_subgraph = llvm::none_of(
            value.getUsers(),
            [](Operation* user) { return llvm::isa<mlir::func::ReturnOp>(user); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    #   $1:... : the trap command.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-trap-push {
      local t="${*:1}"
      LOG_TRAP_STACK+=("${t}")
      # shellcheck disable=2064
      trap "${t}" EXIT
    }
    
    # Removes and restores an EXIT trap.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    								// TODO: prevent this invalid setting, maybe in 1.12+
    								errs = AppendValidation(errs, WrapWarning(fmt.Errorf("duplicated egress host: %s", hostname)))
    							}
    						} else {
    							if len(nssSvcs[ns]) != 0 {
    								errs = AppendValidation(errs, WrapWarning(fmt.Errorf("duplicated egress host: %s", hostname)))
    							}
    						}
    						nssSvcs[ns][svc] = true
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    		currentTime:   1677615892,
    		dnsName:       "www.google.com",
    
    		expectedChains: [][]string{
    			{"www.google.com", "GTS CA 1C3", "GTS Root R1"},
    		},
    		// CAPI doesn't build the chain with the duplicated GeoTrust
    		// entry so the results don't match.
    		systemLax: true,
    	},
    	{
    		name:          "dnssec-exp",
    		leaf:          dnssecExpLeaf,
    		intermediates: []string{startComIntermediate},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    													},
    												},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:      "inbound duplicated metadata",
    			direction: model.TrafficDirectionInbound,
    			cluster:   &cluster.Cluster{},
    			svcInsts: []model.ServiceTarget{
    				{
    					Service: &model.Service{
    						Attributes: model.ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    
    // -----
    
    func.func @transpose_perm_axis_duplicated(%arg0 : tensor<2x2xi32>) -> tensor<2x2xi32> {
      %cst = arith.constant dense<[1, 1]> : tensor<2xi32>
      // expected-error @+1 {{perm[1] cannot have duplicated axis}}
      %0 = "tfl.transpose"(%arg0, %cst) : (tensor<2x2xi32>, tensor<2xi32>) -> tensor<2x2xi32>
      func.return %0 : tensor<2x2xi32>
    }
    
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top