Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for __and__ (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/escaping_test.go

    		{unescaped: "true", escaped: "__true__"},
    		{unescaped: "false", escaped: "__false__"},
    		{unescaped: "null", escaped: "__null__"},
    		{unescaped: "in", escaped: "__in__"},
    		{unescaped: "as", escaped: "__as__"},
    		{unescaped: "break", escaped: "__break__"},
    		{unescaped: "const", escaped: "__const__"},
    		{unescaped: "continue", escaped: "__continue__"},
    		{unescaped: "else", escaped: "__else__"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/gccgo_c.c

    struct ret {
    	uintptr_t r;
    	uintptr_t err;
    };
    
    struct ret gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
      __asm__(GOSYM_PREFIX GOPKGPATH ".realSyscall");
    
    struct ret
    gccgoRealSyscall(uintptr_t trap, uintptr_t a1, uintptr_t a2, uintptr_t a3, uintptr_t a4, uintptr_t a5, uintptr_t a6, uintptr_t a7, uintptr_t a8, uintptr_t a9)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/api_template_v1.__init__.py

    contrib = _LazyLoader("contrib", globals(), "tensorflow.contrib",
                          _CONTRIB_WARNING)
    # The templated code that replaces the placeholder above sometimes
    # sets the __all__ variable. If it does, we have to be sure to add
    # "contrib".
    if "__all__" in vars():
      vars()["__all__"].append("contrib")
    
    from tensorflow.python.platform import flags
    # The "app" module will be imported as part of the placeholder section above.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     # define weak_extern(symbol) _weak_extern (weak symbol)
    @@ -528,7 +536,8 @@ for linking")
     #  define __hidden_ver1(local, internal, name) \
       extern __typeof (name) __EI_##name __asm__(__hidden_asmname (#internal)); \
       extern __typeof (name) __EI_##name \
    -	__attribute__((alias (__hidden_asmname (#local))))
    +    __attribute__((alias (__hidden_asmname (#local))))	\
    +    __attribute_copy__ (name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. internal/s3select/json/record.go

    		}
    	} else if arr, ok := value.ToArray(); ok {
    		v = arr
    	} else {
    		return nil, fmt.Errorf("unsupported sql value %v and type %v", value, value.GetTypeString())
    	}
    
    	name = strings.ReplaceAll(name, "*", "__ALL__")
    	r.KVS = append(r.KVS, jstream.KV{Key: name, Value: v})
    	return r, nil
    }
    
    // WriteCSV - encodes to CSV data.
    func (r *Record) WriteCSV(writer io.Writer, opts sql.WriteCSVOpts) error {
    	var csvRecord []string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/LocalModuleComponentRepository.java

    /**
     * A ModuleComponentRepository that wraps another, but assumes that _all_ access is local. This means that the accessor returned
     * by {@link #getLocalAccess()} will attempt both local _and_ remote access operations on the delegate.
     *
     * This is used to wrap a file-backed ExternalResourceRepository instance, so that both 'local' and 'remote' operations will
     * be considered local.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tensorflow/api_template.__init__.py

    try:
      del python
    except NameError:
      pass
    try:
      del core
    except NameError:
      pass
    try:
      del compiler
    except NameError:
      pass
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

     *
     * That is, this operation does not represent just the execution of task actions.
     *
     * This operation can fail _and_ yield a result.
     * If the operation gets as far as invoking the task executer
     * (i.e. beforeTask callbacks did not fail), then a result is expected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

          function_name += '_with_{}'.format(
              _format_snake_case_op_name(quantized_ops[1]))
        if len(quantized_ops) > 1:
          for quantized_op in quantized_ops[2:]:
            function_name += '_and_{}'.format(
                _format_snake_case_op_name(quantized_op))
    
        # Add suffix based on output type.
        suffix = '_fn'
        if len(arguments) > 1 and arguments[1] == 'f32':
          suffix = '_float_output_fn'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top