Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for addsym (0.36 sec)

  1. pkg/config/analysis/local/istiod_analyze.go

    	sa.suppressions = suppressions
    }
    
    // AddTestReaderKubeSource adds a yaml source to the analyzer, which will analyze
    // runtime resources like pods and namespaces for use in tests.
    func (sa *IstiodAnalyzer) AddTestReaderKubeSource(readers []ReaderSource) error {
    	return sa.addReaderKubeSourceInternal(readers, true)
    }
    
    // AddReaderKubeSource adds a source based on the specified k8s yaml files to the current IstiodAnalyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_SCHED_RR_GET_INTERVAL  = 334 // { int sched_rr_get_interval (pid_t pid, struct timespec *interval); }
    	SYS_UTRACE                 = 335 // { int utrace(const void *addr, size_t len); }
    	SYS_KLDSYM                 = 337 // { int kldsym(int fileid, int cmd, void *data); }
    	SYS_JAIL                   = 338 // { int jail(struct jail *jail); }
    	SYS_SIGPROCMASK            = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

        uncheckedCast(
            project(
                if (configuration != null) mapOf("path" to path, "configuration" to configuration)
                else mapOf("path" to path)
            )
        )
    
    
    /**
     * Adds a dependency to the given configuration, and configures the dependency using the given expression.
     *
     * @param configuration The name of the configuration.
     * @param dependencyNotation The dependency notation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * @param envVariables environment variables
         * @return this
         * @since 3.5
         */
        LongRunningOperation setEnvironmentVariables(@Nullable Map<String, String> envVariables);
    
        /**
         * Adds a progress listener which will receive progress events as the operation runs.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    [[java_plugin]]
    = The Java Plugin
    
    The Java plugin adds Java compilation along with testing and bundling capabilities to a project.
    It serves as the basis for many of the other JVM language Gradle plugins.
    You can find a comprehensive introduction and overview to the Java Plugin in the <<building_java_projects.adoc#building_java_projects,Building Java Projects>> chapter.
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     * not available. Client modules are represented using a {@link org.gradle.api.artifacts.ClientModule}.
     *
     */
    public interface DependencyHandler extends ExtensionAware {
        /**
         * Adds a dependency to the given configuration.
         *
         * @param configurationName The name of the configuration.
         * @param dependencyNotation
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. tensorflow/cc/tools/freeze_saved_model_test.cc

        }
        for (const string& output : outputs) {
          (*signature_def.mutable_outputs())[output].set_name(output);
        }
        return signature_def;
      }
    
      // Adds `signature_def` to `saved_model_bundle` under `key`.
      void AddSignatureDefToSavedModelBundle(const SignatureDef& signature_def,
                                             const string& key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

            this.displayName = displayName;
            this.errorHandler = errorHandler;
            workers = executorFactory.create(displayName + " workers");
        }
    
        /**
         * <p>Adds a {@link Dispatch} implementation that can be used to send outgoing unicast messages on the given channel. Messages are queued in the order that they are
         * dispatched, and are forwarded to at most one handler.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }
    	SYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, void *data); }
    	SYS_JAIL                     = 338 // { int jail(struct jail *jail); }
    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/TopKSelector.java

        this.buffer = (T[]) new Object[IntMath.checkedMultiply(k, 2)];
        this.bufferSize = 0;
        this.threshold = null;
      }
    
      /**
       * Adds {@code elem} as a candidate for the top {@code k} elements. This operation takes amortized
       * O(1) time.
       */
      public void offer(@ParametricNullness T elem) {
        if (k == 0) {
          return;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top