Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for buildList (0.4 sec)

  1. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/AntlrPluginIntegrationTest.groovy

                ${mavenCentralRepository()}
            """
            and:
    
            file("src/main/antlr/org/acme/TestGrammar.g") << """ class TestGrammar extends Parser;
            options {
                buildAST = true;
            }
    
            expr:   mexpr (PLUS^ mexpr)* SEMI!
            ;
    
            mexpr
            :   atom (STAR^ atom)*
            ;
    
            atom:   INT
            ;"""
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. tools/docker-builder/dockerfile/parse.go

    // limitations under the License.
    
    package dockerfile
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"github.com/moby/buildkit/frontend/dockerfile/parser"
    	"github.com/moby/buildkit/frontend/dockerfile/shell"
    
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/tools/docker-builder/builder"
    )
    
    // Option is a functional option for remote operations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pkg/tracing/tracing.go

    	"go.opentelemetry.io/otel/sdk/trace"
    	semconv "go.opentelemetry.io/otel/semconv/v1.17.0"
    	traceapi "go.opentelemetry.io/otel/trace"
    
    	"istio.io/istio/pkg/log"
    )
    
    // Inspired by https://github.com/moby/buildkit/blob/d9a6afdf089a7c4b97cac704a60ad70c21086f12/util/tracing/detect/otlp.go#L18
    // Most OTLP aspects are configured by Environment variables, but the actual client we use needs to be explicitly defined.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/tests/raise_to_tf.mlir

      %0 = "tfr.cast"(%arg0) : (tensor<f32>) -> !tfr.tensor
      %1 = "tfr.cast"(%arg1) : (tensor<f32>) -> !tfr.tensor
      %2 = "tfr.cast"(%arg2) : (tensor<f32>) -> !tfr.tensor
      %3 = "tfr.build_list"(%0, %1, %2) : (!tfr.tensor, !tfr.tensor, !tfr.tensor) -> !tfr.tensor_list
      %concat = tfr.call @tf__risc_concat(%3) : (!tfr.tensor_list) -> !tfr.tensor
      %4 = "tfr.cast"(%concat) : (!tfr.tensor) -> tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top