Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 761 for course (0.15 sec)

  1. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

                sequence.forEach {
                    appendStringOf(it)
                }
            }.toString()
    
        /**
         * The user code where the problem occurred. User code should generally be some coarse-grained entity such as a plugin or script.
         */
        open val containingUserCode: String
            get() = StringBuilder().apply {
                appendStringOf(this@PropertyTrace)
            }.toString()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedJavaSerializedValueSnapshot.java

        }
    
        @Override
        public Object isolate() {
            return populateClass(originalClass);
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isAssignableFrom(originalClass)) {
                return type.cast(isolate());
            }
            if (type.getName().equals(originalClass.getName())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedEnumValueSnapshot.java

            return new EnumValueSnapshot(value);
        }
    
        @Override
        public Enum<?> isolate() {
            return value;
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isInstance(value)) {
                return type.cast(value);
            }
            if (type.isEnum() && type.getName().equals(value.getDeclaringClass().getName())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/runtime.go

    // produces timestamps on such a coarse granularity that the error from this conversion is actually
    // preferable.)
    //
    // The strategy for computing the conversion rate is to write down nanotime and cputicks as
    // early in process startup as possible. From then, we just need to wait until we get values
    // from nanotime that we can use (some platforms have a really coarse system time granularity).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. pkg/kube/krt/core.go

    	// Otherwise, behaves the same as Register.
    	// Additionally, skipping the default behavior of "send all current state through the handler" can be turned off.
    	// This is important when we register in a handler itself, which would cause duplicative events.
    	RegisterBatch(f func(o []Event[T], initialSync bool), runExistingState bool) Syncer
    }
    
    // internalCollection is a superset of Collection for internal usage. All collections must implement this type, but
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/runtime/core/core.h

    #include "tensorflow/cc/experimental/libtf/runtime/runtime.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    namespace core {
    
    // Instantiate a Core Runtime.
    Runtime Runtime();
    
    }  // namespace core
    }  // namespace runtime
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/cors.md

    ## More info
    
    For more info about <abbr title="Cross-Origin Resource Sharing">CORS</abbr>, check the <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">Mozilla CORS documentation</a>.
    
    !!! note "Technical Details"
        You could also use `from starlette.middleware.cors import CORSMiddleware`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 20:28:37 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/cors.md

    ### 简单请求
    
    任何带有 `Origin` 请求头的请求。在这种情况下,中间件将像平常一样传递请求,但是在响应中包含适当的 CORS headers。
    
    ## 更多信息
    
    更多关于 <abbr title="Cross-Origin Resource Sharing">CORS</abbr> 的信息,请查看 <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">Mozilla CORS 文档</a>。
    
    !!! note "技术细节"
        你也可以使用 `from starlette.middleware.cors import CORSMiddleware`。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 27 17:28:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedList.java

            for (Isolatable<?> element : elements) {
                list.add(element.isolate());
            }
            return list;
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. README.md

    Learn more about the
    [TensorFlow community](https://www.tensorflow.org/community) and how to
    [contribute](https://www.tensorflow.org/community/contribute).
    
    ## Courses
    
    * [Coursera](https://www.coursera.org/search?query=TensorFlow)
    * [Udacity](https://www.udacity.com/courses/all?search=TensorFlow)
    * [Edx](https://www.edx.org/search?q=TensorFlow)
    
    ## License
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top