Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for Else (0.15 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Index int
    }
    
    func (fp *FunctionParam) print(ps *printState) {
    	if fp.Index == 0 {
    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    func (fp *FunctionParam) Traverse(fn func(AST) bool) {
    	fn(fp)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

            n->ClearAttr(attr_name);
            n->AddAttr(attr_name, branch_func);
          }
        } else if (HasNodeAttr(n->def(), "_device_ordinal")) {
          // Function call node containing outside compilation.
          n->ClearAttr("_device_ordinal");
          n->AddAttr("_device_ordinal", device_ordinal_value);
        } else {
          return errors::Internal("Unknown node marked with ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return tflite::TensorType_BFLOAT16;
      } else if (type.isF64()) {
        return tflite::TensorType_FLOAT64;
      } else if (mlir::isa<mlir::TF::StringType>(type)) {
        return tflite::TensorType_STRING;
      } else if (mlir::isa<mlir::TF::Quint8Type>(type)) {
        return tflite::TensorType_UINT8;
      } else if (auto complex_type = mlir::dyn_cast<mlir::ComplexType>(type)) {
        auto ftype = complex_type.getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    i--;
                }
                return canon.substring( i + 1 );
            } else if( share != null ) {
                return share + '/';
            } else if( url.getHost().length() > 0 ) {
                return url.getHost() + '/';
            } else {
                return "smb1://";
            }
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              - name: istio-validation
              {{ else -}}
              - name: istio-init
              {{ end -}}
              {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image) }}
                image: "{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image }}"
              {{- else }}
                image: "{{ .ProxyImage }}"
              {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          padding = "VALID";
        } else {
          SmallVector<int64_t, num_spatial_dims * 2> padding_array;
          for (const auto v : conv_op.getPadding().value().getValues<int64_t>()) {
            padding_array.emplace_back(v);
          }
    
          if (IsSamePadding(conv_op, strides, dilation, padding_array)) {
            // Check if padding is "SAME".
            padding = "SAME";
          } else {
            padding = "EXPLICIT";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

                metadata.type = TF_ATTR_STRING;
              } else if (typestr == "list(int)") {
                metadata.type = TF_ATTR_INT;
              } else if (typestr == "list(float)") {
                metadata.type = TF_ATTR_FLOAT;
              } else if (typestr == "list(bool)") {
                metadata.type = TF_ATTR_BOOL;
              } else if (typestr == "list(type)") {
                metadata.type = TF_ATTR_TYPE;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    						catchAllEgressListenerFound = true
    					} else {
    						errs = AppendValidation(errs, fmt.Errorf("sidecar: the egress listener with empty port should be the last listener in the list"))
    					}
    				} else {
    					errs = AppendValidation(errs, fmt.Errorf("sidecar: egress can have only one listener with empty port"))
    					continue
    				}
    			} else {
    				// nolint: staticcheck
    				if egress.Port.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (Task.class.isAssignableFrom(type)) {
                        // return this
                        _ALOAD(0);
                    } else {
                        // if (owner != null) { return owner.getTaskThatOwnsThisObject() } else { return null }
                        _ALOAD(0);
                        _GETFIELD(generatedType, OWNER_FIELD, MODEL_OBJECT_TYPE);
                        _DUP();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              "result isn't");
        } else if (lhs_element_type_with_subtype.GetSubtypes().size() > 1) {
          DCOMMENT(
              "Unexpected `TensorFlowTypeWithSubtype` original type with size>1");
        } else if (lhs_element_type_with_subtype.GetSubtypes().empty()) {
          subtype = rhs_element_type_with_subtype.GetSubtypes().front();
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top