Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for __and__ (0.21 sec)

  1. src/main/resources/suggest_indices/suggest_analyzer.json

    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    In fact, it's a good security practice to publish the checksums of artifacts on a _different server_ than the server where the artifacts themselves are hosted: it's harder to compromise a library both on the repository __and__ the official website.
    
    In the example above, the checksum was published on the website for the JAR, but not the POM file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/cgo/out.go

    	const struct __go_type_descriptor *__type_descriptor;
    	void *__object;
    } Eface;
    
    extern void runtimeCgoCheckPointer(Eface, Eface)
    	__asm__("runtime.cgoCheckPointer")
    	__attribute__((weak));
    
    extern void localCgoCheckPointer(Eface, Eface)
    	__asm__("GCCGOSYMBOLPREF._cgoCheckPointer");
    
    void localCgoCheckPointer(Eface ptr, Eface arg) {
    	if(runtimeCgoCheckPointer) {
    		runtimeCgoCheckPointer(ptr, arg);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top