Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 308 for 0S (0.03 sec)

  1. src/cmd/fix/egltype.go

    	disabled: false,
    }
    
    // Old state:
    //
    //	type EGLDisplay unsafe.Pointer
    //
    // New state:
    //
    //	type EGLDisplay uintptr
    //
    // This fix finds nils initializing these types and replaces the nils with 0s.
    func eglfixDisp(f *ast.File) bool {
    	return typefix(f, func(s string) bool {
    		return s == "C.EGLDisplay"
    	})
    }
    
    var eglFixConfig = fix{
    	name:     "eglconf",
    	date:     "2020-05-30",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/symkind.go

    	SRODATA
    	// Static data that does not contain any pointers
    	SNOPTRDATA
    	// Static data
    	SDATA
    	// Statically data that is initially all 0s
    	SBSS
    	// Statically data that is initially all 0s and does not contain pointers
    	SNOPTRBSS
    	// Thread-local data that is initially all 0s
    	STLSBSS
    	// Debugging data
    	SDWARFCUINFO
    	SDWARFCONST
    	SDWARFFCN
    	SDWARFABSFCN
    	SDWARFTYPE
    	SDWARFVAR
    	SDWARFRANGE
    	SDWARFLOC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:44:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each-extracted/tests/checkTask.out

    > Task :checkDependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/taskOnlyIf/tests/taskOnlyIf.out

    > Task :hello SKIPPED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/tasks/tests/signingTaskOutput.out

    > Task :stuffZip
    > Task :signStuffZip
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 93 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-all.out

    > Task :hello
    Hello John Smith!
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 87 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/application/tests/application.out

    > Task :createDocs
    > Task :compileJava
    > Task :distTar
    > Task :distZip
    > Task :assemble
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/propertyAndProvider/tests/usePropertyAndProvider.out

    > Task :greeting
    Hi from Gradle
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 87 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ant/renameTask/tests/renameAntDelegate.out

    > Task :a-hello
    [ant:echo] Hello, from Ant
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98 bytes
    - Viewed (0)
Back to top