Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 201 for Views (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/ListPropertyListView.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider.views;
    
    import org.gradle.api.provider.ListProperty;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.AbstractList;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/TempFileCreator.java

        static {
          Set<String> views = FileSystems.getDefault().supportedFileAttributeViews();
          if (views.contains("posix")) {
            filePermissions = () -> asFileAttribute(PosixFilePermissions.fromString("rw-------"));
            directoryPermissions = () -> asFileAttribute(PosixFilePermissions.fromString("rwx------"));
          } else if (views.contains("acl")) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/TempFileCreator.java

        static {
          Set<String> views = FileSystems.getDefault().supportedFileAttributeViews();
          if (views.contains("posix")) {
            filePermissions = () -> asFileAttribute(PosixFilePermissions.fromString("rw-------"));
            directoryPermissions = () -> asFileAttribute(PosixFilePermissions.fromString("rwx------"));
          } else if (views.contains("acl")) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/SetPropertySetView.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider.views;
    
    import org.gradle.api.provider.SetProperty;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.AbstractSet;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.LinkedHashSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/ListPropertyListViewTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider.views
    
    import org.gradle.api.provider.HasMultipleValues
    import org.gradle.api.provider.ListProperty
    import org.gradle.api.provider.Provider
    import org.gradle.util.TestUtil
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

        }
    
        private static class ViewGraphDetails implements Serializable {
            // Transient, don't serialize all the views that happen to have been visited, recreate them when visited via the deserialized view
            private transient WeakIdentityHashMap<Object, Map<ViewKey, WeakReference<Object>>> views = new WeakIdentityHashMap<>();
            private final TargetTypeProvider typeProvider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultimapSizeTester.java

    import java.util.Collection;
    import java.util.Map.Entry;
    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.junit.Ignore;
    
    /**
     * Tester for the {@code size} methods of {@code Multimap} and its views.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    static const char *copyright =
        R"(
    /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/unsafeheader/unsafeheader_test.go

    // can successfully mutate variables of the corresponding built-in types.
    //
    // This test is expected to fail under -race (which implicitly enables
    // -d=checkptr) if the runtime views the header types as incompatible with the
    // underlying built-in types.
    func TestWriteThroughHeader(t *testing.T) {
    	t.Run("Slice", func(t *testing.T) {
    		s := []byte("Hello, checkptr!")[:5]
    
    		var alias []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapSizeTester.java

    import java.util.Collection;
    import java.util.Map.Entry;
    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.junit.Ignore;
    
    /**
     * Tester for the {@code size} methods of {@code Multimap} and its views.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top