Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,935 for parsable (0.5 sec)

  1. pkg/env/var.go

    type VarType byte
    
    const (
    	// Variable holds a free-form string.
    	STRING VarType = iota
    	// Variable holds a boolean value.
    	BOOL
    	// Variable holds a signed integer.
    	INT
    	// Variables holds a floating point value.
    	FLOAT
    	// Variable holds a time duration.
    	DURATION
    	// Variable holds a dynamic unknown type.
    	OTHER
    )
    
    // Var describes a single environment variable
    type Var struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/features/ambient.go

    			"Unless other ALLOW policies are created, this effectively denies traffic that doesn't go through the waypoint.")
    )
    
    // registerAmbient registers a variable that is allowed only if EnableAmbient is set
    func registerAmbient[T env.Parseable](name string, defaultWithAmbient, defaultWithoutAmbient T, description string) T {
    	if EnableAmbient {
    		return env.Register(name, defaultWithAmbient, description).Get()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    // panning inside a web browser. It uses the svgpan library, which is
    // embedded into the svgpan.JSSource variable.
    func massageSVG(svg string) string {
    	// Work around for dot bug which misses quoting some ampersands,
    	// resulting on unparsable SVG.
    	svg = strings.Replace(svg, "&;", "&;", -1)
    
    	// Dot's SVG output is
    	//
    	//    <svg width="___" height="___"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/plugin/plugin.go

    }
    
    // Lookup searches for a symbol named symName in plugin p.
    // A symbol is any exported variable or function.
    // It reports an error if the symbol is not found.
    // It is safe for concurrent use by multiple goroutines.
    func (p *Plugin) Lookup(symName string) (Symbol, error) {
    	return lookup(p, symName)
    }
    
    // A Symbol is a pointer to a variable or function.
    //
    // For example, a plugin defined as
    //
    //	package main
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/unsafe/unsafe.go

    // The return value of Sizeof is a Go constant if the type of the argument x
    // does not have variable size.
    // (A type has variable size if it is a type parameter or if it is an array
    // or struct type with elements of variable size).
    func Sizeof(x ArbitraryType) uintptr
    
    // Offsetof returns the offset within the struct of the field represented by x,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    // runtime cost limits appropriate CEL as it is used in Kubernetes.
    //
    // The returned environment contains no CEL variable definitions or custom type declarations and
    // should be extended to construct environments with the appropriate variable definitions,
    // type declarations and any other needed configuration.
    // strictCost is used to determine whether to enforce strict cost calculation for CEL expressions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/VariableTest.groovy

        }
    
        def equality() {
            Variable variable = createVariable()
            Variable same = createVariable()
            Variable different = createVariable()
            different.path = '/other'
    
            expect:
            variable Matchers.strictlyEqual(same)
            variable != different
        }
    
        private Variable createVariable() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

        key: "shared_name"
        value {
          s: ""
        }
      }
    }
    node {
      name: "Variable/Assign"
      op: "Assign"
      input: "Variable"
      input: "Variable/initial_value"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "_class"
        value {
          list {
            s: "loc:@Variable"
          }
        }
      }
      attr {
        key: "use_locking"
        value {
          b: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      // Create a variable handle (uninitialized to start) placed on the parallel
      // device.
      std::function<void(Variable*)> variable_deleter = [&](Variable* to_delete) {
        to_delete->Destroy(context, status.get());
        ASSERT_TRUE(TF_GetCode(status.get()) == TF_OK) << TF_Message(status.get());
        delete to_delete;
      };
      std::unique_ptr<Variable, decltype(variable_deleter)> variable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 15:44:44 UTC 2021
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64dynlinkerror.s

    	RET
    TEXT ·a8(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	ADDQ AX, R15 // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    TEXT ·a9(SB), 0, $0-0
    	CMPL runtime·writeBarrier(SB), $0
    	ORQ R15, R15 // ERROR "when dynamic linking, R15 is clobbered by a global variable access and is used here"
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 20:45:41 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top