Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 625 for crashes (0.58 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// --- in a way that works no matter what servers crash
    			// and restart when. If this handler reacts only to
    			// changes in Spec then we have a scenario in which the
    			// rollout leaves the old Status in place. The scenario
    			// ends with this subsequence: deploy the last new server
    			// before deleting the last old server, and in between
    			// those two operations the last old server crashes and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    	systemstack(func() {
    		if isSecureMode() {
    			exit(2)
    		}
    
    		startpanic_m()
    
    		if dopanic_m(gp, pc, sp) {
    			// crash uses a decent amount of nosplit stack and we're already
    			// low on stack in throw, so crash on the system stack (unlike
    			// fatalpanic).
    			crash()
    		}
    
    		exit(2)
    	})
    
    	*(*int)(nil) = 0 // not reached
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    but instead calls a Go helper function that wraps the C library malloc
    but guarantees never to return nil. If C's malloc indicates out of memory,
    the helper function crashes the program, like when Go itself runs out
    of memory. Because C.malloc cannot fail, it has no two-result form
    that returns errno.
    
    # C references to Go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

        ```
    
    Those parameters are what **FastAPI** will use to "solve" the dependency.
    
    In both cases, it will have:
    
    * An optional `q` query parameter that is a `str`.
    * A `skip` query parameter that is an `int`, with a default of `0`.
    * A `limit` query parameter that is an `int`, with a default of `100`.
    
    In both cases the data will be converted, validated, documented on the OpenAPI schema, etc.
    
    ## Use it
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/dependencies/classes-as-dependencies.md

    Nils Lindemann <******@****.***> 1711821718 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/dependencies/classes-as-dependencies.md

    Aleksandr Andrukhov <******@****.***> 1705057939 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 12 11:12:19 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

         *
         * Starts at this class and capture all classes that reference this class and all classes and resources that were generated from this class.
         * Then does the same analysis for all classes that expose this class on their ABI recursively until no more new classes are discovered.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            assertStateStored()
            result.assertTasksExecuted(":compileJava", ":processResources", ":classes", ":jar", ":compileTestJava", ":processTestResources", ":testClasses", ":test", ":assemble", ":check", ":build")
            def classFile = file("build/classes/java/main/Thing.class")
            classFile.isFile()
            def testClassFile = file("build/classes/java/test/ThingTest.class")
            testClassFile.isFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/runtime/metrics/description.go

    		Name: "/cpu/classes/gc/mark/dedicated:cpu-seconds",
    		Description: "Estimated total CPU time spent performing GC tasks on " +
    			"processors (as defined by GOMAXPROCS) dedicated to those tasks. " +
    			"This metric is an overestimate, and not directly comparable to " +
    			"system CPU time measurements. Compare only with other /cpu/classes " +
    			"metrics.",
    		Kind:       KindFloat64,
    		Cumulative: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorAnnotationsTest.groovy

                        String value();
                    }
                '''
            ])
    
            when:
            def clazz = api.classes.A
            def annotations = clazz.clazz.annotations
            def annClazz = api.classes.Ann
            def subAnnClazz = api.classes.SubAnn
    
            api.extractAndLoadApiClassFrom(subAnnClazz)
            def extractedAnn = api.extractAndLoadApiClassFrom(annClazz)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top