Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for content_es (0.12 sec)

  1. buildscripts/verify-healing.sh

    	done
    }
    
    function perform_test() {
    	start_port=$2
    
    	start_minio_3_node $start_port
    
    	echo "Testing Distributed Erasure setup healing of drives"
    	echo "Remove the contents of the disks belonging to '${1}' node"
    
    	rm -rf ${WORK_DIR}/${1}/*/
    
    	set -x
    	start_minio_3_node $start_port
    
    	check_heal ${1}
    	rv=$?
    	if [ "$rv" == "1" ]; then
    		for i in $(seq 1 3); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          describes model parameters. `flags_proto` describes conversion
          parameters (see relevant .protos for more information). Returns a string
          representing the contents of the converted model. When extended_return
          flag is set to true returns a dictionary that contains string representation
          of the converted model and some statistics like arithmetic ops count.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/test/env/istio.go

    		return "", err
    	}
    	for _, d := range deps {
    		if d.Name == name {
    			return d.LastStableSHA, nil
    		}
    	}
    	return "", fmt.Errorf("%s not found", name)
    }
    
    // ReadVersion returns the contents of the $ROOTDIR/VERSION file
    func ReadVersion() (string, error) {
    	f := filepath.Join(IstioSrc, "VERSION")
    	v, err := os.ReadFile(f)
    	if err != nil {
    		return "", err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. buildscripts/verify-healing-empty-erasure-set.sh

    			chmod +x /tmp/mc
    	fi
    }
    
    function perform_test() {
    	start_minio_3_node $2
    
    	echo "Testing Distributed Erasure setup healing of drives"
    	echo "Remove the contents of the disks belonging to '${1}' erasure set"
    
    	rm -rf ${WORK_DIR}/${1}/*/
    
    	set -x
    	start_minio_3_node $2
    }
    
    function main() {
    	# use same ports for all tests
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            then:
            outputDoesNotContain 'bar!'
            configurationCache.assertStateLoaded()
        }
    
        def "init script names do not matter, their contents do"() {
    
            given:
            def initScript1 = file('initscript1.gradle.kts').tap {
                text = 'println("initscript1!")'
            }
            def initScript2 = file('initscript2.gradle').tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                    }
                    false
                }
                else -> {
                    true
                }
            }
    
            override fun visitCollection(source: FileCollectionInternal.Source, contents: Iterable<File>) =
                throw UnsupportedOperationException()
    
            override fun visitFileTree(root: File, patterns: PatternSet, fileTree: FileTreeInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. cmd/warm-backend-s3.go

    	result, err := s3.core.ListObjectsV2(s3.Bucket, s3.Prefix, "", "", slashSeparator, 1)
    	if err != nil {
    		return false, s3.ToObjectError(err)
    	}
    	return len(result.CommonPrefixes) > 0 || len(result.Contents) > 0, nil
    }
    
    func newWarmBackendS3(conf madmin.TierS3, tier string) (*warmBackendS3, error) {
    	u, err := url.Parse(conf.Endpoint)
    	if err != nil {
    		return nil, err
    	}
    
    	// Validation code
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      const std::string src_file_path =
          absl::StrCat(testing::TempDir(), "/tmp_file");
    
      {
        std::ofstream ofs(src_file_path);
        ofs << "test_string";
      }
    
      // Test that the contents match.
      const absl::StatusOr<std::string> read_status =
          ReadFileToString(src_file_path);
      ASSERT_THAT(read_status, IsOk());
      EXPECT_THAT(*read_status, Eq("test_string"));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/hash/crc64/crc64.go

    	slicing8TableISO = makeSlicingBy8Table(makeTable(ISO))
    	slicing8TableECMA = makeSlicingBy8Table(makeTable(ECMA))
    }
    
    // MakeTable returns a [Table] constructed from the specified polynomial.
    // The contents of this [Table] must not be modified.
    func MakeTable(poly uint64) *Table {
    	buildSlicing8TablesOnce()
    	switch poly {
    	case ISO:
    		return &slicing8TableISO[0]
    	case ECMA:
    		return &slicing8TableECMA[0]
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

         * point to the binary test results directory generated by a {@link Test} task instance.</li>
         *
         * <li>An {@link Iterable}. The contents of the iterable are converted recursively.</li>
         *
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top