Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for 0640 (0.04 sec)

  1. docs/ru/docs/deployment/versions.md

    Или вы можете закрепить версию следующим способом:
    
    ```txt
    fastapi>=0.45.0,<0.46.0
    ```
    
    это значит, что вы используете версии `0.45.0` или выше, но меньше чем `0.46.0`. Например, версия `0.45.2` все еще будет подходить.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FileBackedObjectHolderTest.groovy

            when:
            cache.set('some value')
    
            then:
            1 * fileAccess.writeFile(!null) >> { it[0].run() }
            1 * chmod.chmod(file.parentFile, 0700)
            1 * chmod.chmod(file, 0600)
        }
    
        def "update provides access to cached value"() {
            when:
            cache.set("foo")
    
            then:
            1 * fileAccess.writeFile(!null) >> { it[0].run() }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/testing/fstest/testfs_test.go

    	"testing"
    )
    
    func TestSymlink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	tmp := t.TempDir()
    	tmpfs := os.DirFS(tmp)
    
    	if err := os.WriteFile(filepath.Join(tmp, "hello"), []byte("hello, world\n"), 0644); err != nil {
    		t.Fatal(err)
    	}
    
    	if err := os.Symlink(filepath.Join(tmp, "hello"), filepath.Join(tmp, "hello.link")); err != nil {
    		t.Fatal(err)
    	}
    
    	if err := TestFS(tmpfs, "hello", "hello.link"); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/os/tempfile.go

    		return nil, &PathError{Op: "createtemp", Path: pattern, Err: err}
    	}
    	prefix = joinPath(dir, prefix)
    
    	try := 0
    	for {
    		name := prefix + nextRandom() + suffix
    		f, err := OpenFile(name, O_RDWR|O_CREATE|O_EXCL, 0600)
    		if IsExist(err) {
    			if try++; try < 10000 {
    				continue
    			}
    			return nil, &PathError{Op: "createtemp", Path: prefix + "*" + suffix, Err: ErrExist}
    		}
    		return f, err
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/TarFileTreeTest.java

        public void expectedFilePermissionsAreFound() {
            resources.findResource("permissions.tar").copyTo(archiveFile);
    
            final Map<String, Integer> expected = new HashMap<>();
            expected.put("file", 0644);
            expected.put("folder", 0755);
    
            assertVisitsPermissions(tree, expected);
        }
    
        @Test
        public void readsTarFileWithNullPermissions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/crypto/tls/example_test.go

    	}
    	server.StartTLS()
    	defer server.Close()
    
    	// Typically the log would go to an open file:
    	// w, err := os.OpenFile("tls-secrets.txt", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
    	w := os.Stdout
    
    	client := &http.Client{
    		Transport: &http.Transport{
    			TLSClientConfig: &tls.Config{
    				KeyLogWriter: w,
    
    				Rand:               zeroSource{}, // for reproducible output; don't do this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/convert_tf_quant_ops_to_mhlo.mlir

      // CHECK-DAG: %[[LHS2:.*]] = mhlo.bitcast_convert %[[LHS1]] : (tensor<3x2xi32>) -> tensor<3x2x!quant.uniform<i32:f32, 2.000000e+00:4>>
      %0 = "tf.UniformQuantize"(%input, %input_scales, %input_zps) {
        quantization_axis = -1 : i64, quantization_min_val = -2147483648 : i64, quantization_max_val = 2147483647 : i64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/strconv/makeisprint.go

    			}
    			fmt.Fprintf(&buf, "\t%#04x,\n", r)
    		}
    	}
    	fmt.Fprintf(&buf, "}\n")
    
    	data, err := format.Source(buf.Bytes())
    	if err != nil {
    		log.Fatal(err)
    	}
    	err = os.WriteFile(*filename, data, 0644)
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/kubeconfig/kubeconfig.go

    	if err != nil {
    		return nil, errors.Wrap(err, "failed to create API client")
    	}
    	return client, nil
    }
    
    // WriteToDisk writes a KubeConfig object down to disk with mode 0600
    func WriteToDisk(filename string, kubeconfig *clientcmdapi.Config) error {
    	err := clientcmd.WriteToFile(*kubeconfig, filename)
    	if err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 10:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/bug/bug.go

    	if tempdir == "" {
    		return
    	}
    	src := []byte(`int main() {}`)
    	srcfile := filepath.Join(tempdir, "go-bug.c")
    	outfile := filepath.Join(tempdir, "go-bug")
    	err := os.WriteFile(srcfile, src, 0644)
    	if err != nil {
    		return
    	}
    	defer os.Remove(srcfile)
    	cmd := exec.Command("gcc", "-o", outfile, srcfile)
    	if _, err = cmd.CombinedOutput(); err != nil {
    		return
    	}
    	defer os.Remove(outfile)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top