Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for accept (0.24 sec)

  1. cni/pkg/iptables/iptables.go

    	// CLI: -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    	//
    	// DESC: Anything that's already in conntrack as an established connection, accept
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE,
    		"-p", "tcp",
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            script.declarations.forEach {
                it.accept(this)
            }
        }
    
        override fun visitElement(element: FirElement) {
            element.acceptChildren(this)
        }
    
        override fun visitErrorTypeRef(errorTypeRef: FirErrorTypeRef) {
            visitResolvedTypeRef(errorTypeRef)
    
            errorTypeRef.partiallyResolvedTypeRef?.accept(this)
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  3. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

                if (commandLineArgsMatcher.find() && pidMatcher.find()) {
                    String pid = pidMatcher.group(1);
                    if (!MY_PID.equals(pid)) {
                        action.accept(pid, line);
                    }
                }
            });
        }
    
        private static List<String> ps() {
            return run(determinePsCommand()).assertZeroExit().stdout.lines().collect(Collectors.toList());
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 26 09:46:00 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            List<IllegalStateException> prerequisiteExceptions = new ArrayList<>();
            prerequisitesCheckers.forEach(c -> {
                try {
                    c.accept(pluginDescriptor);
                } catch (IllegalStateException e) {
                    prerequisiteExceptions.add(e);
                }
            });
            // aggregate all exceptions
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  5. RELEASE.md

        'outputs'. If a model was exported with different names before 1.2, and is
        now served with tensorflow/serving, it will accept requests using 'inputs'
        and 'outputs'. Starting at 1.2, such a model will accept the keys specified
        during export. Therefore, inference requests using 'inputs' and 'outputs'
        may start to fail. To fix this, either update any inference clients to send
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  6. doc/go_spec.html

    quotes, as in <code>&quot;bar&quot;</code>.
    Within the quotes, any character may appear except newline and unescaped double quote.
    The text between the quotes forms the
    value of the literal, with backslash escapes interpreted as they
    are in <a href="#Rune_literals">rune literals</a> (except that <code>\'</code> is illegal and
    <code>\"</code> is legal), with the same restrictions.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. CREDITS

        Contributions with other software (except as part of its Contributor
        Version); or
    
    (c) under Patent Claims infringed by Covered Software in the absence of
        its Contributions.
    
    This License does not grant any rights in the trademarks, service marks,
    or logos of any Contributor (except as may be necessary to comply with
    the notice requirements in Section 3.4).
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  8. cmd/iam-store.go

    	iamUserPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// STS accounts are loaded on demand and not via the periodic IAM reload.
    	// map of STS access key to credentials
    	iamSTSAccountsMap map[string]UserIdentity
    	// map of STS access key to policy names
    	iamSTSPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// map of group names to group info
    	iamGroupsMap map[string]GroupInfo
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  9. cmd/sts-handlers_test.go

    	for _, b := range accInfo.Buckets {
    		gotBuckets.Add(b.Name)
    		if !(b.Access.Read && b.Access.Write) {
    			c.Fatalf("root user should have read and write access to bucket: %v", b.Name)
    		}
    	}
    	shouldHaveBuckets := set.CreateStringSet(bucket2, bucket)
    	if !gotBuckets.Equals(shouldHaveBuckets) {
    		c.Fatalf("root user should have access to all buckets")
    	}
    
    	// This must fail.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
  10. .github/workflows/contributor-pr.yml

      cancel-in-progress: true
    
    
    env:
      # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
      DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions:
      contents: read
    
    jobs:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 08:50:27 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top