Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 7,522 for mode_ (0.04 sec)

  1. guava/src/com/google/common/io/Files.java

        private final File file;
        private final ImmutableSet<FileWriteMode> modes;
    
        private FileByteSink(File file, FileWriteMode... modes) {
          this.file = checkNotNull(file);
          this.modes = ImmutableSet.copyOf(modes);
        }
    
        @Override
        public FileOutputStream openStream() throws IOException {
          return new FileOutputStream(file, modes.contains(APPEND));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/ArchiveTestFixture.groovy

            dirs.add(relativePath)
        }
    
        protected void addMode(String relativePath, int mode) {
            fileModesByRelativePath.put(relativePath, mode & 0777)
        }
    
        def assertFileMode(String relativePath, int fileMode) {
            List<Integer> modes = fileModesByRelativePath.get(relativePath)
            assert modes.size() == 1
            assertThat(modes.get(0), equalTo(fileMode))
            this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

                throw e
            }
        }
    
        ConfigurableOperation withModel(Class modelType, Closure cl = {}) {
            withConnection {
                def model = it.model(modelType)
                cl(model)
                new ConfigurableOperation(model).buildModel()
            }
        }
    
        ConfigurableOperation withBuild(Closure cl = {}) {
            withConnection {
                def build = it.newBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. cluster/addons/fluentd-gcp/event-exporter.yaml

        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: event-exporter-rb
      namespace: kube-system
      labels:
        k8s-app: event-exporter
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 18:40:41 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ContinuousBuildCrossVersionSpec.groovy

            }
        }
    
        def "client can request continuous mode when building a model, but request is effectively ignored"() {
            when:
            // take care to not use runBuild which implicitly calls cancel
            // we want to make sure it doesn't need cancellation
            GradleProject project = withConnection { ProjectConnection connection ->
                connection.model(GradleProject.class)
                    .withArguments("--continuous")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_openbsd_386.go

    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    	SYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, \
    	SYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }
    	SYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, \
    	SYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.2K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_openbsd_arm.go

    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    	SYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, \
    	SYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }
    	SYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, \
    	SYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            out = math_ops.matmul(out, random_tensor_gen_fn((3, 4)))
            return {'output': out}
    
        model = TwoMatmulModel()
        input_shape = (1, 2)
    
        save.save(
            model,
            self._input_saved_model_path,
            signatures=model.matmul.get_concrete_function(
                tensor_spec.TensorSpec(
                    shape=input_shape, dtype=dtypes.float32, name='input_tensor'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. pkg/volume/downwardapi/downwardapi_test.go

    	defaultMode := int32(0644)
    	var files []v1.DownwardAPIVolumeFile
    	for path, fieldPath := range volumeFiles {
    		file := v1.DownwardAPIVolumeFile{
    			Path: path,
    			FieldRef: &v1.ObjectFieldSelector{
    				FieldPath: fieldPath,
    			},
    		}
    		if mode, found := modes[path]; found {
    			file.Mode = &mode
    		}
    		files = append(files, file)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_arm64.go

    	SYS_CHDIR          = 12  // { int sys_chdir(const char *path); }
    	SYS_FCHDIR         = 13  // { int sys_fchdir(int fd); }
    	SYS_MKNOD          = 14  // { int sys_mknod(const char *path, mode_t mode, \
    	SYS_CHMOD          = 15  // { int sys_chmod(const char *path, mode_t mode); }
    	SYS_CHOWN          = 16  // { int sys_chown(const char *path, uid_t uid, \
    	SYS_OBREAK         = 17  // { int sys_obreak(char *nsize); } break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 14.7K bytes
    - Viewed (0)
Back to top