Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 260 for toint (0.11 sec)

  1. docs/en/docs/async.md

    * **Asynchronous Code**
    * **`async` and `await`**
    * **Coroutines**
    
    ## Asynchronous Code
    
    Asynchronous code just means that the language 💬 has a way to tell the computer / program 🤖 that at some point in the code, it 🤖 will have to wait for *something else* to finish somewhere else. Let's say that *something else* is called "slow-file" 📝.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_test.go

    				t.Errorf("[%d,%d] %s(PR_SET_KEEPCAPS, %d, ...): %v", i, j, v.label, j&1, err)
    			}
    
    			// At this point, we want all launched Go
    			// routines to confirm that they see the
    			// wanted value for KEEPCAPS.
    			for k := 0; k < routines; k++ {
    				question <- want
    			}
    
    			// At this point, we should have a large
    			// number of locked OS threads all wanting to
    			// reply.
    			for k := 0; k < routines; k++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    import org.jetbrains.kotlin.analysis.project.structure.ProjectStructureProvider
    
    /**
     * [KaSession] is the entry point to all frontend-related work. It has the following contracts:
     *
     * - It should not be accessed from the event dispatch thread or outside a read action.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            return isAnnotatedWithIncubating(constructor) || isAnnotatedWithIncubating(constructor.jApiClass)
        }
    
        protected boolean isOverride(JApiMethod method) {
            // No point in parsing the source file if the method is not there any more.
            if (method.changeStatus == JApiChangeStatus.REMOVED) {
                return false
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_pod_control.go

    	// sink already exists errors
    	if apierrors.IsAlreadyExists(err) {
    		return err
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(features.StatefulSetAutoDeletePVC) {
    		// Set PVC policy as much as is possible at this point.
    		if err := spc.UpdatePodClaimForRetentionPolicy(ctx, set, pod); err != nil {
    			spc.recordPodEvent("update", set, pod, err)
    			return err
    		}
    	}
    	spc.recordPodEvent("create", set, pod, err)
    	return err
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/runtime/string.go

    	if last >= '0' && last <= '9' {
    		n, ok := atoi64(s)
    		if !ok || n < 0 {
    			return 0, false
    		}
    		return n, ok
    	}
    	// Failing a trailing digit, this must always end in 'B'.
    	// Also at this point there must be at least one digit before
    	// that B.
    	if last != 'B' || len(s) < 2 {
    		return 0, false
    	}
    	// The one before that must always be a digit or 'i'.
    	if c := s[len(s)-2]; c >= '0' && c <= '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	return framework.QueueSkip, nil
    }
    
    // PreFilter invoked at the prefilter extension point
    //
    // If the pod haven't those types of volumes, we'll skip the Filter phase
    func (pl *CSILimits) PreFilter(ctx context.Context, _ *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/os/file_unix.go

    	fi, err := Lstat(newname)
    	if err == nil && fi.IsDir() {
    		// There are two independent errors this function can return:
    		// one for a bad oldname, and one for a bad newname.
    		// At this point we've determined the newname is bad.
    		// But just in case oldname is also bad, prioritize returning
    		// the oldname error because that's what we did historically.
    		// However, if the old name and new name are not the same, yet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

                    isDouble -> "0.0"
                    isChar -> "'\\u0000'"
                    isBoolean -> "false"
                    isUnit -> "Unit"
                    isString -> "\"\""
                    isUInt -> "0.toUInt()"
                    isULong -> "0.toULong()"
                    isUShort -> "0.toUShort()"
                    isUByte -> "0.toUByte()"
                    else -> null
                }
            }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/math/rand/rand_test.go

    		// have emulated floating point.
    		// TODO: detect what it actually has.
    		return true
    	}
    	return false
    }
    
    func TestFloat32(t *testing.T) {
    	// For issue 6721, the problem came after 7533753 calls, so check 10e6.
    	num := int(10e6)
    	// But do the full amount only on builders (not locally).
    	// But ARM5 floating point emulation is slow (Issue 10749), so
    	// do less for that builder:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top