Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 9,719 for Else (0.05 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluator.kt

                }
    
                else -> {
                    Static(
                        defaultStageTransition(),
                        Eval(program.source)
                    )
                }
            }
    
        private
        fun defaultStageTransition(): ResidualProgram.Instruction = when (programKind) {
            ProgramKind.TopLevel -> ApplyDefaultPluginRequests
            else -> CloseTargetScope
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/languageUtils.kt

    
    fun PropertyAccess.asChainOrNull(): AccessChain? =
        if (receiver == null) AccessChain(listOf(name)) else {
            val prev = when (receiver) {
                is PropertyAccess -> receiver.asChainOrNull()
                else -> null
            }
            if (prev != null)
                AccessChain(prev.nameParts + name)
            else null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 477 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ConsoleConfigureAction.java

                configureAutoConsole(renderer, consoleMetadata, stdout, stderr);
            } else if (consoleOutput == ConsoleOutput.Rich) {
                configureRichConsole(renderer, consoleMetadata, stdout, stderr, false);
            } else if (consoleOutput == ConsoleOutput.Verbose) {
                configureRichConsole(renderer, consoleMetadata, stdout, stderr, true);
            } else if (consoleOutput == ConsoleOutput.Plain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminer.java

                        return compilerRoot.equals(install.getVisualCppDir());
                    } else {
                        File compilerRoot = getNthParent(compilerFile, 2);
                        if (compilerRoot.equals(install.getVisualCppDir())) {
                            return true;
                        } else {
                            compilerRoot = getNthParent(compilerFile, 3);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. android/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)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaBuildingUtils.kt

        get() = when (this) {
            Int::class, String::class, Boolean::class, Long::class, Unit::class -> true
            else -> false
        }
    
    
    val KCallable<*>.annotationsWithGetters: List<Annotation>
        get() = this.annotations + if (this is KProperty) this.getter.annotations else emptyList()
    
    
    fun KType.toDataTypeRefOrError() =
        toDataTypeRef() ?: error("failed to convert type $this to data type")
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. test/codegen/bmi.go

    	var r int64
    	// amd64/v3:"BLSRQ",-"TESTQ",-"CALL"
    	if isPowerOfTwo64(x) {
    		r = a
    	} else {
    		r = b
    	}
    	// amd64/v3:"CMOVQEQ",-"TESTQ",-"CALL"
    	return r * 2 // force return blocks joining
    }
    
    func isPowerOfTwoSelect32(x, a, b int32) int32 {
    	var r int32
    	// amd64/v3:"BLSRL",-"TESTL",-"CALL"
    	if isPowerOfTwo32(x) {
    		r = a
    	} else {
    		r = b
    	}
    	// amd64/v3:"CMOVLEQ",-"TESTL",-"CALL"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. schema/relationship.go

    		schema.buildPolymorphicRelation(relation, field)
    	} else if many2many := field.TagSettings["MANY2MANY"]; many2many != "" {
    		schema.buildMany2ManyRelation(relation, field, many2many)
    	} else if belongsTo := field.TagSettings["BELONGSTO"]; belongsTo != "" {
    		schema.guessRelation(relation, field, guessBelongs)
    	} else {
    		switch field.IndirectFieldType.Kind() {
    		case reflect.Struct:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

      if (inference_type_str == "FLOAT") {
        return FLOAT;
      } else if (inference_type_str == "QUANTIZED_INT8") {
        return QUANTIZED_INT8;
      } else if (inference_type_str == "QUANTIZED_UINT8") {
        return QUANTIZED_UINT8;
      } else if (inference_type_str == "HYBRID") {
        return HYBRID;
      } else {
        return UNKNOWN;
      }
    }
    
    inline std::string GetInferenceString(InferenceType inference_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassDecoder.kt

            val classLoader = if (readBoolean()) {
                val scope = readScope()
                if (readBoolean()) {
                    scope.localClassLoader
                } else {
                    scope.exportClassLoader
                }
            } else {
                this.classLoader
            }
            val newType = Class.forName(name, false, classLoader)
            classes.putInstance(id, newType)
            return newType
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top