Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 259 for mask16 (0.12 sec)

  1. internal/pubsub/mask.go

    	"math"
    	"math/bits"
    )
    
    // Mask allows filtering by a bitset mask.
    type Mask uint64
    
    const (
    	// MaskAll is the mask for all entries.
    	MaskAll Mask = math.MaxUint64
    )
    
    // MaskFromMaskable extracts mask from an interface.
    func MaskFromMaskable(m Maskable) Mask {
    	return Mask(m.Mask())
    }
    
    // Contains returns whether *all* flags in other is present in t.
    func (t Mask) Contains(other Mask) bool {
    	return t&other == other
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		updateGeneric(&state, h.buffer[:h.offset])
    	}
    	finalize(out, &state.h, &state.s)
    }
    
    // [rMask0, rMask1] is the specified Poly1305 clamping mask in little-endian. It
    // clears some bits of the secret coefficient to make it possible to implement
    // multiplication more efficiently.
    const (
    	rMask0 = 0x0FFFFFFC0FFFFFFF
    	rMask1 = 0x0FFFFFFC0FFFFFFC
    )
    
    // initialize loads the 256-bit key into the two 128-bit secret values r and s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

      public void testBase16() {
        testEncodingWithCasing(base16(), "", "");
        testEncodingWithCasing(base16(), "f", "66");
        testEncodingWithCasing(base16(), "fo", "666F");
        testEncodingWithCasing(base16(), "foo", "666F6F");
        testEncodingWithCasing(base16(), "foob", "666F6F62");
        testEncodingWithCasing(base16(), "fooba", "666F6F6261");
        testEncodingWithCasing(base16(), "foobar", "666F6F626172");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    // cidr('::1/128').ip().family() // returns '6'
    // cidr('192.168.0.0/24').masked() // returns cidr('192.168.0.0/24')
    // cidr('192.168.0.1/24').masked() // returns cidr('192.168.0.0/24')
    // cidr('192.168.0.0/24') == cidr('192.168.0.0/24').masked() // returns true, CIDR was already in canonical format
    // cidr('192.168.0.1/24') == cidr('192.168.0.1/24').masked() // returns false, CIDR was not in canonical format
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            then:
            result.keySet() == ['task1', 'task2'] as Set
    
            and:
            1 * tasks.discoverTasks()
            1 * tasks.names >> (['task1', 'task2'] as SortedSet)
            0 * tasks._
    
            when:
            def matches = asTasks(result['task1'])
    
            then:
            matches == [task1]
    
            and:
            1 * tasks.getByName('task1') >> task1
            0 * tasks._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.hash;
    
    import static com.google.common.io.BaseEncoding.base16;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Charsets;
    import com.google.common.collect.ImmutableList;
    import com.google.common.io.BaseEncoding;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

            then:
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Matched :task1")
            result.assertNotOutput("task2")
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/707")
        def "task is created and configured eagerly when referenced using all { action }"() {
            buildFile << """
                tasks.register("task1", SomeTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModelTest.groovy

            when:
            final model = DefaultGroupTaskReportModel.of(target)
    
            then:
            model.getTasksForGroup('group') as List == [task1, task2, task3, task4, task5, task6, task7, task8]
        }
    
        def renamesDefaultGroupWhenOtherGroupNotPresent() {
            TaskDetails task1 = taskDetails('1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModelTest.groovy

            TaskDetails task1 = taskDetails('task1')
            TaskDetails task2 = taskDetails('task2')
            TaskReportModel project1 = Mock()
            TaskReportModel project2 = Mock()
            _ * project1.groups >> (['group'] as LinkedHashSet)
            _ * project1.getTasksForGroup('group') >> ([task1] as Set)
            _ * project2.groups >> (['group'] as LinkedHashSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 31 16:45:11 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            result.assertNotOutput("task1")
            result.assertNotOutput("task2")
    
            when:
            run("task1")
    
            then:
            outputContains("Received :other")
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Configure again :task1")
            outputContains("Received :task1")
            result.assertNotOutput("task2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top