Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for endif (0.15 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

     		 __STRING2_COPY_ARR2 __src2, __STRING2_COPY_ARR3 __src3,
    @@ -382,8 +186,6 @@ __mempcpy_small (void *__dest, char __src1,
         }
       return __extension__ ((void *) __u + __srclen);
     }
    -#   endif
    -#  endif
     # endif
     #endif
     
    @@ -391,44 +193,17 @@ __mempcpy_small (void *__dest, char __src1,
     /* Return pointer to C in S.  */
     #ifndef _HAVE_STRING_ARCH_strchr
     extern void *__rawmemchr (const void *__s, int __c);
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  2. src/cmd/asm/internal/lex/input.go

    		in.ifdefStack[len(in.ifdefStack)-1] = !in.ifdefStack[len(in.ifdefStack)-1]
    	}
    }
    
    // #endif processing.
    func (in *Input) endif() {
    	in.expectNewline("#endif")
    	if len(in.ifdefStack) == 0 {
    		in.Error("unmatched #endif")
    	}
    	in.ifdefStack = in.ifdefStack[:len(in.ifdefStack)-1]
    }
    
    // #include processing.
    func (in *Input) include() {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  3. Makefile.core.mk

    ifeq ($(VERSION),)
    VERSION_FROM_FILE := $(shell cat VERSION)
    ifeq ($(VERSION_FROM_FILE),)
    $(error VERSION not detected. Make sure it's stored in the VERSION file or defined in VERSION variable)
    endif
    VERSION := $(VERSION_FROM_FILE)-dev
    endif
    
    export VERSION
    
    # Base version of Istio image to use
    BASE_VERSION ?= 1.22-2024-04-26T19-01-49
    ISTIO_BASE_REGISTRY ?= gcr.io/istio-release
    
    export GO111MODULE ?= on
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 26 19:45:17 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_experimental_test.cc

      TF_Code code = TF_GetCode(status);
      string status_msg(TF_Message(status));
      TF_DeleteStatus(status);
      ASSERT_EQ(TF_OK, code) << status_msg;
      TF_DeletePluggableDeviceLibraryHandle(lib);
    #endif  // !defined(TENSORFLOW_NO_SHARED_OBJECTS)
    #endif  // !defined(PLATFORM_WINDOWS)
    }
    
    TEST(CAPI_EXPERIMENTAL, LibraryNextPluggableDeviceLoadFunctions) {
      // TODO(penpornk): Enable this test on Windows.
    #if !defined(PLATFORM_WINDOWS)
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jan 17 22:27:52 GMT 2023
    - 13.1K bytes
    - Viewed (1)
  5. tensorflow/c/c_api_experimental.h

                                                      const char* func_name,
                                                      TF_Status* status);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.h

    namespace tensorflow {
    class Tensor;
    }  // namespace tensorflow
    
    TFE_TensorHandle* TFE_NewTensorHandle(const tensorflow::Tensor& t,
                                          TF_Status* status);
    #endif
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 22.8K bytes
    - Viewed (1)
  7. tensorflow/c/experimental/grappler/grappler.h

                                              const char* name, TF_Buffer* buf,
                                              TF_Status* s);
    
    #ifdef __cplusplus
    }  // extern "C"
    #endif
    
    C
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Aug 03 18:08:43 GMT 2022
    - 12.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/immediate_execution_context.h

      virtual void SetDistributedManager(
          std::unique_ptr<ImmediateExecutionDistributedManager> distributed) = 0;
    
      virtual ImmediateExecutionDistributedManager* GetDistributedManager() = 0;
    #endif  // !IS_MOBILE_PLATFORM
    
     protected:
      explicit ImmediateExecutionContext(AbstractContextKind kind)
          : AbstractContext(kind) {}
      ~ImmediateExecutionContext() override {}
    };
    
    namespace internal {
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api.cc

      return is_alive;
    #endif  // !IS_MOBILE_PLATFORM
    }
    
    TF_CAPI_EXPORT extern void TFE_ContextAsyncWait(TFE_Context* ctx,
                                                    TF_Status* status) {
    #if defined(IS_MOBILE_PLATFORM)
      status->status = tensorflow::OkStatus();
    #else   // !defined(IS_MOBILE_PLATFORM)
      status->status = tensorflow::unwrap(ctx)->AsyncWait();
    #endif  // !IS_MOBILE_PLATFORM
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
  10. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      }
      return ParallelTensor::FromTensorHandles(*this, std::move(components),
                                               status);
    }
    
    }  // namespace parallel_device
    }  // namespace tensorflow
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 25 15:21:13 GMT 2023
    - 12.9K bytes
    - Viewed (0)
Back to top