Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,501 for kini (0.24 sec)

  1. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

      Unless required by applicable law or agreed to in writing,
      software distributed under the License is distributed on an
      "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
      KIND, either express or implied.  See the License for the
      specific language governing permissions and limitations
      under the License.
    
    -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue24161res/restype.go

    #include <CoreFoundation/CoreFoundation.h>
    */
    import "C"
    import (
    	"reflect"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	if k := reflect.TypeOf(C.CFArrayCreate(0, nil, 0, nil)).Kind(); k != reflect.Uintptr {
    		t.Fatalf("bad kind %s\n", k)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 486 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

                appendLine("// end-report-data")
                appendLine(");}")
                appendLine("</script>")
            }
        }
    
        fun writeDiagnostic(kind: DiagnosticKind, details: DecoratedPropertyProblem) {
            jsonModelWriter.writeDiagnostic(kind, details)
        }
    
        fun close() {
            writer.close()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/smartCastExtensionReceiver.capturing.txt

    ExtensionReceiver[name: dumbWith; isMutated: false; displayText: this@dumbWith]
        dumbWith@fun R|kotlin/Any?|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=UNKNOWN>
        R|kotlin/Any?|
    ExtensionReceiver[name: dumbWith; isMutated: false; displayText: this@dumbWith]
        dumbWith@fun R|kotlin/Any?|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=UNKNOWN>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Sep 04 15:47:56 UTC 2023
    - 382 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/fmt.go

    		return
    	}
    	if t == nil {
    		b.WriteString("<T>")
    		return
    	}
    	if t.Kind() == TSSA {
    		b.WriteString(t.extra.(string))
    		return
    	}
    	if t.Kind() == TTUPLE {
    		b.WriteString(t.FieldType(0).String())
    		b.WriteByte(',')
    		b.WriteString(t.FieldType(1).String())
    		return
    	}
    
    	if t.Kind() == TRESULTS {
    		tys := t.extra.(*Results).Types
    		for i, et := range tys {
    			if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/fuse.go

    func fuseBlockIf(b *Block) bool {
    	if b.Kind != BlockIf {
    		return false
    	}
    	// It doesn't matter how much Preds does s0 or s1 have.
    	var ss0, ss1 *Block
    	s0 := b.Succs[0].b
    	i0 := b.Succs[0].i
    	if s0.Kind != BlockPlain || !isEmpty(s0) {
    		s0, ss0 = b, s0
    	} else {
    		ss0 = s0.Succs[0].b
    		i0 = s0.Succs[0].i
    	}
    	s1 := b.Succs[1].b
    	i1 := b.Succs[1].i
    	if s1.Kind != BlockPlain || !isEmpty(s1) {
    		s1, ss1 = b, s1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramParser.kt

    
    object ProgramParser {
    
        fun parse(source: ProgramSource, kind: ProgramKind, target: ProgramTarget): Packaged<Program> = try {
            programFor(source, kind, target)
        } catch (unexpectedBlock: UnexpectedBlock) {
            handleUnexpectedBlock(unexpectedBlock, source.text, source.path)
        }
    
        private
        fun programFor(source: ProgramSource, kind: ProgramKind, target: ProgramTarget): Packaged<Program> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/const.go

    	return constant.ToComplex(v)
    }
    
    func toflt(v constant.Value) constant.Value {
    	if v.Kind() == constant.Complex {
    		v = constant.Real(v)
    	}
    
    	return constant.ToFloat(v)
    }
    
    func toint(v constant.Value) constant.Value {
    	if v.Kind() == constant.Complex {
    		v = constant.Real(v)
    	}
    
    	if v := constant.ToInt(v); v.Kind() == constant.Int {
    		return v
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java

        }
    
        public SuggestRequestBuilder addField(final String field) {
            request.addField(field);
            return this;
        }
    
        public SuggestRequestBuilder addKind(final String kind) {
            request.addKind(kind);
            return this;
        }
    
        public SuggestRequestBuilder setSuggestDetail(final boolean suggestDetail) {
            request.setSuggestDetail(suggestDetail);
            return this;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. statement.go

    					stmt.Dest = destValueCanAddr.Interface()
    					destValue = destValueCanAddr.Elem()
    				}
    
    				switch destValue.Kind() {
    				case reflect.Struct:
    					stmt.AddError(field.Set(stmt.Context, destValue, value))
    				default:
    					stmt.AddError(ErrInvalidData)
    				}
    			}
    
    			switch stmt.ReflectValue.Kind() {
    			case reflect.Slice, reflect.Array:
    				if len(fromCallbacks) > 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top