Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 452 for toolID (0.2 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

    import org.apache.tools.ant.Project
    import org.apache.tools.ant.taskdefs.Expand
    import org.apache.tools.ant.taskdefs.Tar
    import org.apache.tools.ant.taskdefs.Untar
    import org.apache.tools.ant.taskdefs.Zip
    import org.apache.tools.ant.types.ArchiveFileSet
    import org.apache.tools.ant.types.EnumeratedAttribute
    import org.apache.tools.ant.types.ZipFileSet
    import org.apache.tools.bzip2.CBZip2OutputStream
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

        }
    
        def "finds tools.jar if java home supplied"() {
            System.properties['java.vm.vendor'] = 'Sun'
    
            when:
            def home = tmpDir.createDir("home")
            home.create {
                jdk {
                    bin { file theOs.getExecutableName('java') }
                    lib { file 'tools.jar' }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

            /*
             * The (tooLow + 1, tooHigh) arguments below would be invalid because tooLow would be
             * greater than tooHigh.
             */
            return ContiguousSet.create(Range.openClosed(0, 1), DiscreteDomain.integers()).subSet(0, 1);
          }
          int tooHigh = set.last() + 1;
          int tooLow = set.first() - 1;
          set.add(tooHigh);
          set.add(tooLow);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/tools/proto_splitter/cc/util.h"
    #include "tensorflow/tools/proto_splitter/chunk.pb.h"
    #include "tensorflow/tools/proto_splitter/testdata/test_message.pb.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/status_matchers.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import com.google.common.annotations.VisibleForTesting;
    import com.sun.tools.javac.api.ClientCodeWrapper;
    import com.sun.tools.javac.api.DiagnosticFormatter;
    import com.sun.tools.javac.util.Context;
    import com.sun.tools.javac.util.JCDiagnostic;
    import com.sun.tools.javac.util.JavacMessages;
    import com.sun.tools.javac.util.Log;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    From the main menu, go to `View` > `Tool Windows` > `Gradle`.
    Then click on the _Refresh_ icon.
    
    .Refreshing a Gradle project in IntelliJ IDEA
    image::troubleshooting-refresh-intellij.png[]
    
    === Refreshing Eclipse (using Buildship)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/fingerprinting_utils.cc

    using ::tensorflow::proto_splitter::FieldIndex;
    using tools::proto_splitter::Field;
    using tools::proto_splitter::FieldType;
    using tools::proto_splitter::GetChunkMetadata;
    using tools::proto_splitter::GetFieldTypes;
    using tools::proto_splitter::GetMutableField;
    using tools::proto_splitter::GetRiegeliReader;
    using tools::proto_splitter::Merger;
    using tools::proto_splitter::MutableFieldResult;
    using tools::proto_splitter::ReadChunk;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. hack/update-codegen.sh

    PLURAL_EXCEPTIONS="Endpoints:Endpoints,ResourceClaimParameters:ResourceClaimParameters,ResourceClassParameters:ResourceClassParameters"
    
    # Any time we call sort, we want it in the same locale.
    export LC_ALL="C"
    
    # Work around for older grep tools which might have options we don't want.
    unset GREP_OPTIONS
    
    if [[ "${DBG_CODEGEN}" == 1 ]]; then
        kube::log::status "DBG: starting generated_files"
    fi
    
    # Generate a list of directories we don't want to play in.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/astutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    const Doc = `check for locks erroneously passed by value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    your changes by running the command:
    
    ```bash
    tensorflow/tools/ci_build/ci_build.sh CPU tensorflow/tools/ci_build/ci_sanity.sh
    ```
    
    This will catch most license, Python coding style and BUILD file issues that
    may exist in your changes.
    
    #### Running unit tests
    
    There are two ways to run TensorFlow unit tests.
    
    1.  Using tools and libraries installed directly on your system.
    
        Refer to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top