Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 647 for incoming2 (0.28 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 02 20:01:36 UTC 2020
    - 550 bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Product Security Committee to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 03 11:39:37 UTC 2020
    - 543 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/order_by_dialect.cc

        const detail::SideEffectAnalysisInfo* info = nullptr;
        auto extra_dependencies =
            [&](Operation* op,
                bool incoming) -> llvm::SmallVector<Operation*, 4> const& {
          return incoming ? info->DirectControlPredecessors(op)
                          : info->DirectControlSuccessors(op);
        };
        // Some tests have recursive calls and other shenanigans, so allow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    
    configurations.all {
        incoming.beforeResolve {
            throw IllegalStateException("You shouldn't resolve configurations during configuration phase!")
        }
    }
    // tag::config-logic[]
    dependencies {
        implementation("log4j:log4j:1.2.17")
    }
    
    tasks.register("printArtifactNames") {
        // always executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 548 bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                dependencies { implementation project(':b1') }
            """
    
            buildA.buildFile << """
                def runtimeClasspath = configurations.runtimeClasspath
                def rootProvider = runtimeClasspath.incoming.resolutionResult.rootComponent
                classes.doLast {
                    def rootComponent = rootProvider.get()
                    assert rootComponent.id.build.buildPath == ':'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

        /**
         * Adds a handler for messages on the given channel. The handler may implement any of the following:
         *
         * <ul>
         *
         * <li>{@link Dispatch} to handle incoming messages received from any connections attached to this hub. Each incoming message is passed to exactly one handler associated to the given channel.
         * </li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. SECURITY_CONTACTS

    # Defined below are the security contacts for this repo.
    #
    # They are the contact point for the Security Response Committee (SRC) to reach out
    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 14:45:43 UTC 2023
    - 665 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        }
      }
      return success();
    }
    
    // Returns true iff `op` has a direct control dependency from (`incoming` ==
    // true) or to (`incoming` == false) any op in `cluster_ops` or
    // `cluster_dependent_ops`.
    Operation* getOpClusterControlDependency(
        Operation* op, bool incoming, const OpSetVector& cluster_ops,
        const OpSetVector& cluster_dependent_ops,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  9. pkg/registry/core/namespace/strategy_test.go

    	}
    	errs = Strategy.ValidateUpdate(ctx, invalidNamespace, namespace)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    	if invalidNamespace.ResourceVersion != "4" {
    		t.Errorf("Incoming resource version on update should not be mutated")
    	}
    }
    
    func TestNamespaceDefaultLabelCanonicalize(t *testing.T) {
    	namespace := &api.Namespace{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/bestPractices/logicDuringConfiguration-dont/groovy/build.gradle

    plugins {
        id("java-library")
    }
    
    repositories {
        mavenCentral()
    }
    
    configurations.all {
        incoming.beforeResolve {
            throw new IllegalStateException("You shouldn't resolve configurations during configuration phase!")
        }
    }
    
    // tag::config-logic[]
    dependencies {
        implementation 'log4j:log4j:1.2.17'
    }
    
    tasks.register('printArtifactNames') {
        // always executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
Back to top