Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 422 for gretty (0.18 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom

          <id>carlos</id>
          <email>******@****.***</email>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <name>Brett Porter</name>
          <id>brett</id>
          <email>brett@codehaus.org</email>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <name>John Casey</name>
          <id>jdcasey</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/embed/internal/embedtest/testdata/.hidden/_more/tip.txt

    #define struct union /* Great space saver */...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 13:50:44 UTC 2020
    - 45 bytes
    - Viewed (0)
  5. 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)
  6. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "uniqueItems": true
              }
            },
            {
              "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",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            }
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/configureObject/groovy/build.gradle

    class UserInfo {
        String name
        String email
    }
    
    tasks.register('greet') {
        def user = configure(new UserInfo()) {
            name = "Isaac Newton"
            email = "******@****.***"
        }
        doLast {
            println user.name
            println user.email
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 266 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/pluginWithVariants/kotlin/src/main/java/org/example/GreetingTask.java

    package org.example;
    
    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.TaskAction;
    
    public class GreetingTask extends DefaultTask {
        @TaskAction
        public void greet() {
            System.out.println("Hello from Gradle <7");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/pluginWithVariants/groovy/src/gradle7/java/org/example/GreetingTask.java

    package org.example;
    
    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.TaskAction;
    
    public class GreetingTask extends DefaultTask {
        @TaskAction
        public void greet() {
            System.out.println("Hello from Gradle 7+");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/README.md

    - Import from GraphDef, in .pb or .pbtxt  format, into MLIR.
    - Raise to Control-flow-graph. Converts TF Control Flow dialect to TF dialect.
    - The Canonicalization pass iteratively applies canonicalization
    transformations in a greedy way until no further changes occur.
    Canonicalization includes constant folding.
    - The Legalize pass converts TensorFlow operations to TensorFlow Lite
    ones. The operations that cannot be mapped to TensorFlow Lite dialect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 29 11:30:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top