Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for barmod (0.2 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

          }
        }
        resourceFilter {
          appliesTo = 'FILES_AND_FOLDERS'
          type = 'EXCLUDE_ALL'
          matcher {
            id = 'org.eclipse.some.custom.matcher'
            arguments = 'barfoo'
          }
        }
      }
    }
            """
            when:
            run("eclipse")
            then:
    
            def resourceFilterXml = '''
            <filteredResources>
                    <filter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherProbeRegistry.java

                        }
                        LOGGER.debug("Watch probe has been armed for hierarchy: {}", watchableHierarchy);
                        break;
                    case ARMED:
                        LOGGER.debug("Watch probe for hierarchy is already armed: {}", watchableHierarchy);
                        break;
                    case TRIGGERED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/_asm/go.mod

    module std/crypto/internal/bigmod/_asm
    
    go 1.19
    
    require github.com/mmcloughlin/avo v0.4.0
    
    require (
    	golang.org/x/mod v0.4.2 // indirect
    	golang.org/x/sys v0.0.0-20211030160813-b3129d9d1021 // indirect
    	golang.org/x/tools v0.1.7 // indirect
    	golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 15:19:45 UTC 2023
    - 314 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/TaskContainerIntegrationTest.groovy

                    assert task.path in [':foo']
                }
    
                tasks.register("foo", Copy)
                tasks.register("bar", Copy)
                tasks.register("foobar", Delete)
                tasks.register("barfoo", Delete)
            """
            expect:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9446")
        def "chained lookup of tasks.matching.withType"() {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 07:46:00 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/armon/circbuf/LICENSE

    = vendor/github.com/armon/circbuf licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2013 Armon Dadgar
    
    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    import (
    	"strconv"
    
    	. "github.com/mmcloughlin/avo/build"
    	. "github.com/mmcloughlin/avo/operand"
    	. "github.com/mmcloughlin/avo/reg"
    )
    
    //go:generate go run . -out ../nat_amd64.s -pkg bigmod
    
    func main() {
    	Package("crypto/internal/bigmod")
    	ConstraintExpr("!purego")
    
    	addMulVVW(1024)
    	addMulVVW(1536)
    	addMulVVW(2048)
    
    	Generate()
    }
    
    func addMulVVW(bits int) {
    	if bits%64 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat_noasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build purego || !(386 || amd64 || arm || arm64 || ppc64 || ppc64le || riscv64 || s390x)
    
    package bigmod
    
    import "unsafe"
    
    func addMulVVW1024(z, x *uint, y uint) (c uint) {
    	return addMulVVW(unsafe.Slice(z, 1024/_W), unsafe.Slice(x, 1024/_W), y)
    }
    
    func addMulVVW1536(z, x *uint, y uint) (c uint) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 664 bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     * and the probe becomes triggered (or proven).
     *
     * The {@link #unprovenHierarchies()} stream returns any hierarchies that were armed, but never received
     * a file system event.
     * These locations cannot be trusted to receive file system events in a timely manner.
     *
     * Note: a probe needs to be armed only once, if it receives an event, we will trust that location until
     * the registry is closed.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat_asm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego && (386 || amd64 || arm || arm64 || ppc64 || ppc64le || riscv64 || s390x)
    
    package bigmod
    
    import "internal/cpu"
    
    // amd64 assembly uses ADCX/ADOX/MULX if ADX is available to run two carry
    // chains in the flags in parallel across the whole operation, and aggressively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

      name: foobar
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://authz.example.com
      name: barfoo
    users:
    - name: a name
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    contexts:
    - name: default
      context:
        cluster: barfoo
        user: a name
    current-context: default
    `,
    			wantErr: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top