Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,935 for parsable (0.32 sec)

  1. src/main/java/jcifs/smb1/util/mime.map

    image/png                      png              # Portable Network Graphics
    image/tiff                     tiff tif         # TIFF image file
    image/x-cmu-raster             ras              #
    image/x-portable-anymap        pnm              #
    image/x-portable-bitmap        pbm              #
    image/x-portable-graymap       pgm              #
    image/x-portable-pixmap        ppm              #
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    const (
    	claimsVarName = "claims"
    	userVarName   = "user"
    )
    
    // compiler implements the Compiler interface.
    type compiler struct {
    	// varEnvs is a map of CEL environments, keyed by the name of the CEL variable.
    	// The CEL variable is available to the expression.
    	// We have 2 environments, one for claims and one for user.
    	varEnvs map[string]*environment.EnvSet
    }
    
    // NewCompiler returns a new Compiler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. doc/next/7-ports.md

    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. test/alias2.go

    	var _ A0 = T0{}
    	var _ T0 = A0{}
    
    	var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration"
    	var _ N0 = A0{} // ERROR "cannot use A0{} \(value of type A0\) as N0 value in variable declaration"
    
    	var _ A5 = Value{} // ERROR "cannot use Value{} \(value of type reflect\.Value\) as A5 value in variable declaration"
    }
    
    // Invalid type alias declarations.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/go/types/assignments.go

    	}
    
    	// If we have a n:n mapping from lhs variable to rhs expression,
    	// each value can be assigned to its corresponding variable.
    	if l == r && !isCall {
    		var x operand
    		for i, lhs := range lhs {
    			desc := lhs.name
    			if returnStmt != nil && desc == "" {
    				desc = "result variable"
    			}
    			check.expr(newTarget(lhs.typ, desc), &x, orig_rhs[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // Adds the tensor that initializes the variable through the provided
    // `assign_var_op` to the `bundle_writer` for saving to checkpoint. Returns the
    // shared name of the variable if a variable is saved successfully. If the
    // variable is not saved, returns an empty string.
    absl::StatusOr<std::string> AddTensorToBundleWriter(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/mnist/mnist_train.py

                                               seed=seed)),
        }
    
        self.biases = {
            'b1': tf.Variable(tf.zeros([n_hidden_1])),
            'b2': tf.Variable(tf.zeros([n_hidden_2])),
            'b3': tf.Variable(tf.zeros([n_hidden_3])),
            'b4': tf.Variable(tf.zeros([num_classes])),
        }
    
      @tf.function
      def __call__(self, data):
        """The Model definition."""
        x = tf.reshape(data, [-1, 28, 28, 1])
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 20 03:05:18 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tests/test_graph_tfvariable_readonly.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    fetch {
      id { node_name: "result" }
    }
    
    variable {
      node_name: "x"
      shape {
      }
      type: DT_FLOAT
      readonly: true
    }
    
    variable {
      node_name: "y"
      shape {
      }
      type: DT_FLOAT
      readonly: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 20 20:03:30 UTC 2020
    - 244 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    	}
    }
    
    func (c *CompositedCompiler) CompileAndStoreVariable(variable NamedExpressionAccessor, options OptionalVariableDeclarations, mode environment.Type) CompilationResult {
    	result := c.Compiler.CompileCELExpression(variable, options, mode)
    	c.CompositionEnv.AddField(variable.GetName(), result.OutputType)
    	c.CompositionEnv.CompiledVariables[variable.GetName()] = result
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/TypeResolver.java

            checkArgument(!variable.equalsType(type), "Type variable %s bound to itself", variable);
            builder.put(variable, type);
          }
          return new TypeTable(builder.buildOrThrow());
        }
    
        final Type resolve(TypeVariable<?> var) {
          TypeTable unguarded = this;
          TypeTable guarded =
              new TypeTable() {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
Back to top