Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for conditional (0.45 sec)

  1. plugin/pkg/auth/authorizer/rbac/rbac.go

    	if ruleCheckingVisitor.allowed {
    		return authorizer.DecisionAllow, ruleCheckingVisitor.reason, nil
    	}
    
    	// Build a detailed log of the denial.
    	// Make the whole block conditional so we don't do a lot of string-building we won't use.
    	if klogV := klog.V(5); klogV.Enabled() {
    		var operation string
    		if requestAttributes.IsResourceRequest() {
    			b := &bytes.Buffer{}
    			b.WriteString(`"`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arm.go

    	/* hack to make B.NE etc. work: turn it into the corresponding conditional */
    	if prog.As == arm.AB {
    		prog.As = bcode[(bits^arm.C_SCOND_XOR)&0xf]
    		bits = (bits &^ 0xf) | arm.C_SCOND_NONE
    	}
    	prog.Scond = bits
    	return true
    }
    
    // ParseARMCondition parses the conditions attached to an ARM instruction.
    // The input is a single string consisting of period-separated condition
    // codes, such as ".P.W". An initial period is ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. docs/select/README.md

    - All [operators](https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference-operators.html) are supported.
    - All aggregation, conditional, type-conversion and string functions are supported.
    - JSON path expressions such as `FROM S3Object[*].path` are not yet evaluated.
    - Large numbers (outside of the signed 64-bit range) are not yet supported.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_1x.md

     * Fix problems where spdy/3.1 headers may not have been compressed properly.
     * Fix problems with spdy/3.1 and http/2 where the wrong window size was being
       used.
     * Fix 1.5.0 regression where conditional cache responses could corrupt the
       connection pool.
    
    
    ## Version 1.5.0
    
    _2014-03-07_
    
    
    ##### OkHttp no longer uses the default SSL context.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

            }
        }
    
        /**
         * Removes the first matching expected deprecation warning from the list of expected deprecations stored
         * in {@link #expectedDeprecationWarnings} as a side-effect; conditional on a matching deprecation warning
         * being already present in that collection.
         * <p>
         * A match means that the first n lines starting at {@code startIdx} match the lines of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    ln -s "/usr/include/aarch64-linux-gnu/asm" "${TARGET}/usr/include/asm"
    
    # Download glibc's shared and development libraries based on the value of the
    # `VERSION` parameter.
    # Note: 'Templatizing' this and the other conditional branches would require
    # defining several variables (version, os, path) making it difficult to maintain
    # and extend for future modifications.
    mkdir -p glibc-src
    mkdir -p glibc-build
    cd glibc-src
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable
    import org.junit.jupiter.api.io.TempDir
    import java.io.File
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.go

    			// Use ReadBits to retrieve a single bit
    			// from the underling io.ByteReader.
    			bit = uint16(br.ReadBits(1))
    		}
    
    		// Trick a compiler into generating conditional move instead of branch,
    		// by making both loads unconditional.
    		l, r := node.left, node.right
    
    		if bit == 1 {
    			nodeIndex = l
    		} else {
    			nodeIndex = r
    		}
    
    		if nodeIndex == invalidNodeValue {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    /**
     * Common superclass for {@link MultisetSetCountUnconditionallyTester} and {@link
     * MultisetSetCountConditionallyTester}. It is used by those testers to test calls to the
     * unconditional {@code setCount()} method and calls to the conditional {@code setCount()} method
     * when the expected present count is correct.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    			}
    		}
    		return op + " " + strings.Join(args, ",")
    	case BCCTR:
    		if int(inst.Args[0].(Imm))&20 == 20 { // unconditional
    			return "BR (CTR)"
    		}
    		return op + " " + strings.Join(args, ", ")
    	case BCCTRL:
    		if int(inst.Args[0].(Imm))&20 == 20 { // unconditional
    			return "BL (CTR)"
    		}
    		return op + " " + strings.Join(args, ",")
    	case BCA, BCL, BCLA, BCLRL, BCTAR, BCTARL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top