Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 218 for incoming2 (0.14 sec)

  1. cmd/grid.go

    		BlockConnect: globalGridStart,
    		TLSConfig: &tls.Config{
    			RootCAs:          globalRootCAs,
    			CipherSuites:     fips.TLSCiphers(),
    			CurvePreferences: fips.TLSCurveIDs(),
    		},
    		// Record incoming and outgoing bytes.
    		Incoming: globalConnStats.incInternodeInputBytes,
    		Outgoing: globalConnStats.incInternodeOutputBytes,
    		TraceTo:  globalTrace,
    	})
    	if err != nil {
    		return err
    	}
    	globalGrid.Store(g)
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConcurrentDerivationStrategyIntegTest.groovy

                   foo 'org.springframework.boot:spring-boot-starter-web:2.2.2.RELEASE'
                }
    
                tasks.register("resolve") {
                   doLast {
                      configurations.foo.incoming.resolutionResult.allComponents {
                          assert it instanceof ResolvedComponentResult
                          if (id instanceof ModuleComponentIdentifier) {
                              variants.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K 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. 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)
  6. 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)
  7. 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)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildArtifactTransformIntegrationTest.groovy

                        to.attribute(Attribute.of("artifactType", String), "xform")
                    }
                }
    
                task resolve {
                    def artifacts = configurations.compileClasspath.incoming.artifactView {
                        attributes.attribute(Attribute.of("artifactType", String), "xform")
                    }.artifacts
                    inputs.files artifacts.artifactFiles
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. releasenotes/notes/pilot-autoscale.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Improved** the variables `PILOT_MAX_REQUESTS_PER_SECOND` (which rate limits the incoming requests, previously defaulted to 25.0)
        and `PILOT_PUSH_THROTTLE` (which limits the number of concurrent responses, previously defaulted to 100) to automatically scale with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 08:42:13 UTC 2023
    - 428 bytes
    - Viewed (0)
  10. .github/workflows/contributor-pr.yml

            with:
              distribution: temurin
              java-version: 11
          - uses: actions/download-artifact@v4
            with:
              name: build-receipt.properties
              path: incoming-distributions/build-receipt.properties
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
            with:
              cache-read-only: ${{ github.ref != 'refs/heads/master' }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top