Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,606 for nothings (0.32 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        public val UNIT: KaType
            get() = unit
    
        public abstract val nothing: KaType
    
        @Deprecated("Use 'nothing' instead.", replaceWith = ReplaceWith("nothing"))
        public val NOTHING: KaType
            get() = nothing
    
        public abstract val any: KaType
    
        @Deprecated("Use 'any' instead.", replaceWith = ReplaceWith("any"))
        public val ANY: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/net/internal/cgotest/empty_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgotest
    
    import "testing"
    
    // Nothing to test here.
    // The test is that the package compiles at all.
    // See resstate.go.
    func Test(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:09:52 UTC 2024
    - 317 bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/0.1/maven-clean-plugin-0.1.jar

    1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-clean-plugin 0.1 clean false true clean Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/LanguageTreeResult.kt

    }
    
    
    data class Element<T : LanguageTreeElement>(val element: T) : ElementResult<T>
    
    
    data class Syntactic<out T>(val value: T) : SyntacticResult<T>
    
    
    sealed interface FailingResult : ElementResult<Nothing>, SyntacticResult<Nothing>
    
    
    sealed interface SingleFailureResult : FailingResult
    
    
    data class UnsupportedConstruct(
        val potentialElementSource: SourceData,
        val erroneousSource: SourceData,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 12:28:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/dist/buildruntime.go

    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    /*
     * Helpers for building runtime.
     */
    
    // mkzversion writes zversion.go:
    //
    //	package sys
    //
    // (Nothing right now!)
    func mkzversion(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package sys\n")
    	writefile(buf.String(), file, writeSkipSame)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

       *
       * <p>By default this method does nothing.
       */
      // TODO: consider supporting a TearDownTestCase-like API
      protected void shutDown() throws Exception {}
    
      /**
       * Invoked to request the service to stop.
       *
       * <p>By default this method does nothing.
       *
       * <p>Currently, this method is invoked while holding a lock. If an implementation of this method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

         */
        @Input
        @Deprecated
        public boolean isUploadDescriptor() {
            return false;
        }
    
        /**
         * Do not use this method, it does nothing.
         * @deprecated This class is scheduled for removal in a future version, this method <strong>should not be used</strong>.
         */
        @Deprecated
        @SuppressWarnings("UnusedDeclaration")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    		expectedScores framework.NodeScoreList
    		resources      []config.ResourceSpec
    		shape          []config.UtilizationShapePoint
    		wantErrs       field.ErrorList
    	}{
    		{
    			name:         "nothing scheduled, nothing requested (default - least requested nodes have priority)",
    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget2.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:main.kt
        FUN name:Greeting visibility:public modality:FINAL <> () returnType:kotlin.String
          annotations:
            MyComposable
          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun Greeting (): kotlin.String declared in <root>'
              STRING_CONCATENATION type=kotlin.String
                CONST String type=kotlin.String value="Hi "
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 580 bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    			claimName, _, err := resourceclaim.Name(pod, &podClaim)
    			switch {
    			case err != nil:
    				// Either the claim was not created (nothing to do here) or
    				// the API changed. The later will also get reported elsewhere,
    				// so here it's just a debug message.
    				logger.V(6).Info("Nothing to do for claim during pod change", "err", err, "reason", reason)
    			case claimName != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top