Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for Programmed (0.25 sec)

  1. android/guava/src/com/google/common/io/ByteArrayDataInput.java

     *
     * <p><b>Warning:</b> The caller is responsible for not attempting to read past the end of the
     * array. If any method encounters the end of the array prematurely, it throws {@link
     * IllegalStateException} to signify <i>programmer error</i>. This behavior is a technical violation
     * of the supertype's contract, which specifies a checked exception.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/features/client_adapter.go

    		case clientfeatures.GA:
    			converted.PreRelease = featuregate.GA
    		case clientfeatures.Deprecated:
    			converted.PreRelease = featuregate.Deprecated
    		default:
    			// The default case implies programmer error.  The same set of prerelease
    			// constants must exist in both component-base and client-go, and each one
    			// must have a case here.
    			panic(fmt.Sprintf("unrecognized prerelease %q of feature %q", spec.PreRelease, name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/settings.md

        // Dann könnten Sie diese mit anderen Programmen verwenden, etwa
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // Erstelle eine Umgebungsvariable MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Verwende sie mit anderen Programmen, etwa
        $ echo "Hello $Env:MY_NAME"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/debugging.md

    ## Exécutez votre code avec votre <abbr title="En anglais: debugger">débogueur</abbr>
    
    Parce que vous exécutez le serveur Uvicorn directement depuis votre code, vous pouvez appeler votre programme Python (votre application FastAPI) directement depuis le <abbr title="En anglais: debugger">débogueur</abbr>.
    
    ---
    
    Par exemple, dans Visual Studio Code, vous pouvez :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Mar 06 16:26:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - Kube-proxy iptables: new metric sync_proxy_rules_iptables_total that exposes the number of rules programmed per table in each iteration ([#99653](https://github.com/kubernetes/kubernetes/pull/99653), [@aojea](https://github.com/aojea)) [SIG Instrumentation and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/11-language-change.yml

      - type: dropdown
        id: author-go-experience
        attributes:
          label: "Go Programming Experience"
          description: "Would you consider yourself a novice, intermediate, or experienced Go programmer?"
          options:
            - "Novice"
            - "Intermediate"
            - "Experienced"
          default: 1
    
      - type: input
        id: author-other-languages-experience
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopbce.go

    					}
    					if addWillOverflow(v, step) {
    						return false
    					}
    					if inclusive && v != limit.AuxInt || !inclusive && v+1 != limit.AuxInt {
    						// We know a better limit than the programmer did. Use our limit instead.
    						limit = f.constVal(limit.Op, limit.Type, v, true)
    						inclusive = true
    					}
    					return true
    				}
    				if step == 1 && !inclusive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/concepts.md

    ## Ressourcennutzung
    
    Ihr(e) Server ist (sind) eine **Ressource**, welche Sie mit Ihren Programmen, der Rechenzeit auf den CPUs und dem verfügbaren RAM-Speicher verbrauchen oder **nutzen** können.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

       * equal to any other equality groups added to this tester.
       *
       * <p>The {@code @Nullable} annotations on the {@code equalityGroup} parameter imply that the
       * objects, and the array itself, can be null. That is for programmer convenience, when the
       * objects come from factory methods that are themselves {@code @Nullable}. In reality neither the
       * array nor its contents can be null, but it is not useful to force the use of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	if status.terminatingAt.IsZero() {
    		klog.V(4).InfoS("Pod worker is complete but did not have terminatingAt set, likely programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    	if !status.terminatedAt.IsZero() {
    		klog.V(4).InfoS("Pod worker is complete and had terminatedAt set, likely programmer error", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    	status.finished = true
    	status.working = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top