Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 301 for gretty (0.45 sec)

  1. src/internal/runtime/atomic/types_64bit.go

    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    // on this thread can be observed to occur before it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) LoadAcquire() uint64 {
    	return LoadAcq64(&u.value)
    }
    
    // StoreRelease is a partially unsynchronized version
    // of Store that relaxes ordering constraints. Other threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. api/openapi-spec/swagger.json

          "name": "ports",
          "type": "integer",
          "uniqueItems": true
        },
        "pretty-tJGM1-ng": {
          "description": "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).",
          "in": "query",
          "name": "pretty",
          "type": "string",
          "uniqueItems": true
        },
        "previous-1jxDPu3y": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  3. pkg/config/model.go

    }
    
    func ToJSON(s Spec) ([]byte, error) {
    	return toJSON(s, false)
    }
    
    func ToPrettyJSON(s Spec) ([]byte, error) {
    	return toJSON(s, true)
    }
    
    func toJSON(s Spec, pretty bool) ([]byte, error) {
    	indent := ""
    	if pretty {
    		indent = "    "
    	}
    
    	// golang protobuf. Use protoreflect.ProtoMessage to distinguish from gogo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractTypeScopeTest.kt

                }
    
                testServices.assertions.assertEqualsToTestDataFileSibling(scopeStringRepresentation)
                testServices.assertions.assertEqualsToTestDataFileSibling(signaturePretty, extension = ".pretty.txt")
    
                val actualNames = prettyPrint {
                    appendLine("${KaTypeScope::class.simpleName}:")
                    renderContainedNamesIfExists(typeScope)
                    appendLine()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

                .addPluginWithPrintlnTask('greet', 'Hello from first plugin!', firstPluginId, "FirstPlugin")
                .publishAs("some", "artifact", pluginVersion, pluginPortal, executer)
                .allowAll()
            String secondPluginId = 'com.acme.greeter2'
            new PluginBuilder(file("greeter-second"))
                .addPluginWithPrintlnTask('greet2', 'Hello from second plugin!', secondPluginId, "SecondPlugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/kotlin/buildSrc/src/main/kotlin/myproject.greeting.gradle.kts

    tasks.register<com.example.GreetingTask>("greet") {
        greeting = "Hello from 'myproject.greeting' plugin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  7. testing/smoke-test/build.gradle.kts

            group = "Verification"
            testClassesDirs = smokeTestSourceSet.output.classesDirs
            classpath = smokeTestSourceSet.runtimeClasspath
            maxParallelForks = 1 // those tests are pretty expensive, we shouldn't execute them concurrently
            inputs.property("androidHomeIsSet", System.getenv("ANDROID_HOME") != null)
            inputs.property("androidSdkRootIsSet", System.getenv("ANDROID_SDK_ROOT") != null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/dynamic-resource-allocation/structured/namedresources/cel"
    )
    
    // These types and fields are all exported to allow logging them with
    // pretty-printed JSON.
    
    type Model struct {
    	Instances []InstanceAllocation
    }
    
    type InstanceAllocation struct {
    	Allocated bool
    	Instance  *resourceapi.NamedResourcesInstance
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

                            @${TaskAction.name} void greet() { System.out.println("${greeting}"); }
                        }
                    """
                    break
                case Language.KOTLIN:
                    writeSourceFile "kotlin", "${className}.kt", """
                        open class ${className} : ${DefaultTask.name}() {
                            @${TaskAction.name} fun greet() { println("${greeting}") }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "name": "limit",
              "type": "integer",
              "uniqueItems": true
            },
            {
              "description": "If 'true', then the output is pretty printed.",
              "in": "query",
              "name": "pretty",
              "type": "string",
              "uniqueItems": true
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top