Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 9,719 for Else (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

      if (type.isF16()) {
        *dtype = DT_HALF;
        return absl::OkStatus();
      } else if (type.isF32()) {
        *dtype = DT_FLOAT;
        return absl::OkStatus();
      } else if (type.isF64()) {
        *dtype = DT_DOUBLE;
        return absl::OkStatus();
      } else if (type.isBF16()) {
        *dtype = DT_BFLOAT16;
        return absl::OkStatus();
      } else if (type.isFloat8E4M3FN()) {
        *dtype = DT_FLOAT8_E4M3FN;
        return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. association.go

    						primaryFields = append(primaryFields, ref.PrimaryKey)
    						joinPrimaryKeys = append(joinPrimaryKeys, ref.ForeignKey.DBName)
    					} else {
    						relPrimaryFields = append(relPrimaryFields, ref.PrimaryKey)
    						joinRelPrimaryKeys = append(joinRelPrimaryKeys, ref.ForeignKey.DBName)
    					}
    				} else {
    					tx.Clauses(clause.Eq{Column: ref.ForeignKey.DBName, Value: ref.PrimaryValue})
    				}
    			}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/AsmClassGeneratorUtils.java

            } else if (type instanceof ParameterizedType) {
                visitParameterizedType((ParameterizedType) type, builder);
            } else if (type instanceof WildcardType) {
                visitWildcardType((WildcardType) type, builder);
            } else if (type instanceof TypeVariable) {
                visitTypeVariable((TypeVariable<?>) type, builder);
            } else if (type instanceof GenericArrayType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/image/internal/imageutil/impl.go

    				r := yy1 + 91881*cr1
    				if uint32(r)&0xff000000 == 0 {
    					r >>= 16
    				} else {
    					r = ^(r >> 31)
    				}
    
    				g := yy1 - 22554*cb1 - 46802*cr1
    				if uint32(g)&0xff000000 == 0 {
    					g >>= 16
    				} else {
    					g = ^(g >> 31)
    				}
    
    				b := yy1 + 116130*cb1
    				if uint32(b)&0xff000000 == 0 {
    					b >>= 16
    				} else {
    					b = ^(b >> 31)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/xml/XmlEscapersTest.java

          } else if (ch == '<') {
            assertEscaping(xmlEscaper, "&lt;", ch);
          } else if (ch == '>') {
            assertEscaping(xmlEscaper, "&gt;", ch);
          } else if (shouldEscapeQuotes && ch == '\'') {
            assertEscaping(xmlEscaper, "&apos;", ch);
          } else if (shouldEscapeQuotes && ch == '"') {
            assertEscaping(xmlEscaper, "&quot;", ch);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                                evaluate(fir.explicitReceiver)?.evaluateStringLength()
                            } else {
                                referredVariable.toLiteralExpression()
                            }
                        }
                        is FirFieldSymbol -> referredVariable.toLiteralExpression()
                        else -> null
                    }
                }
                is FirLiteralExpression -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. scan.go

    				continue
    			}
    			values[idx] = new(interface{})
    		}
    	} else if len(columnTypes) > 0 {
    		for idx, columnType := range columnTypes {
    			if columnType.ScanType() != nil {
    				values[idx] = reflect.New(reflect.PtrTo(columnType.ScanType())).Interface()
    			} else {
    				values[idx] = new(interface{})
    			}
    		}
    	} else {
    		for idx := range columns {
    			values[idx] = new(interface{})
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/DirectedGraphConnections.java

          previousSuccessor = null;
        } else if (previousValue instanceof PredAndSucc) {
          adjacentNodeValues.put(node, new PredAndSucc(value));
          previousSuccessor = ((PredAndSucc) previousValue).successorValue;
        } else if (previousValue == PRED) {
          adjacentNodeValues.put(node, new PredAndSucc(value));
          previousSuccessor = null;
        } else { // successor
          previousSuccessor = previousValue;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

        }
    
        protected static boolean isRead(String unixSymbolic) {
            char symbol = unixSymbolic.charAt(0);
            if (symbol == 'r') {
                return true;
            } else if (symbol == '-') {
                return false;
            } else {
                throw new IllegalArgumentException("'" + symbol + "' is not a valid Unix permission READ flag, must be 'r' or '-'.");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_macros.h

    #ifdef SWIG
    #define TF_CAPI_EXPORT
    #else
    #if defined(_WIN32)
    #ifdef TF_COMPILE_LIBRARY
    #define TF_CAPI_EXPORT __declspec(dllexport)
    #else
    #define TF_CAPI_EXPORT __declspec(dllimport)
    #endif  // TF_COMPILE_LIBRARY
    #else
    #ifdef TF_CAPI_WEAK
    #define TF_CAPI_EXPORT \
      __attribute__((visibility("default"))) __attribute((weak))
    #else
    #define TF_CAPI_EXPORT __attribute__((visibility("default")))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top