Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for regular (0.18 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslRegressionsTest.kt

            withBuildScript("""println("test")""")
            build("help", "--info").apply {
                assertNotOutput("is not supposed to be used along with regular Kotlin sources, and will be ignored in the future versions by default. (Use -Xallow-any-scripts-in-source-roots command line option to opt-in for the old behavior.)")
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 07:57:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_platform_info.h

      // If the op associated with this XlaPlatformInfo is placed on an XLA device
      // then device_allocator_ is the xla::Backend's memory allocator.  If the op
      // is placed on a regular CPU or GPU device then device_allocator_ is null.
      // The allocator is of unknown provenance; keep it in a shared pointer to
      // set an artificial refcount of one.
      std::shared_ptr<se::DeviceMemoryAllocator> device_allocator_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. cmd/preferredimports/preferredimports.go

    			log.Fatalf("Error loading aliases: %v", err)
    		}
    		for pattern, name := range stringAliases {
    			re, err := regexp.Compile(pattern)
    			if err != nil {
    				log.Fatalf("Error parsing import path pattern %q as regular expression: %v", pattern, err)
    			}
    			aliases[re] = name
    		}
    	}
    	if isTerminal {
    		logPrefix = "\r" // clear status bar when printing
    	}
    	fmt.Println("checking-imports: ")
    
    	a := newAnalyzer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

          path: ../_output/local/bin/logcheck.so
          description: structured logging checker
          original-url: k8s.io/logtools/logcheck
          settings:
            config: |
              # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
              # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
              #
              # By default, structured logging call parameters are checked, but usage of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/runtime/tracebuf.go

    // a new traceWriter. This allows for chaining together calls in a fluent-style
    // API. This is partly stylistic, and very slightly for performance, since
    // the compiler can destructure this value and pass it between calls as
    // just regular arguments. However, this style is not load-bearing, and
    // we can change it if it's deemed too error-prone.
    type traceWriter struct {
    	traceLocker
    	*traceBuf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** These special values are **NOT case sensitive**, as opposed to regular string parts and they do not depend on the separator used around them: `1.0-RC-1` == `1.0.rc.1`
    
    == Simple version declaration semantics
    
    When you declare a version using the short-hand notation, for example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. tests/integration/security/util/framework.go

    	vmCfg := func() echo.Config {
    		// VM specific setup
    		vmCfg := EchoConfig(VMSvc, false, nil)
    		// for test cases that have `buildVM` off, vm will function like a regular pod
    		vmCfg.DeployAsVM = buildVM
    		return vmCfg
    	}()
    
    	externalSvc := echo.Config{
    		Service: ExternalSvc,
    		// Namespace: appsNamespace,
    		Ports: []echo.Port{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/envoyfilter.go

    				cpw.ProxyPrefixMatch = prefix
    			} else {
    				// pre-compile the regex for proxy version if it exists
    				// ignore the error because validation catches invalid regular expressions.
    				cpw.ProxyVersionRegex, _ = regexp.Compile(cp.Match.Proxy.ProxyVersion)
    			}
    		}
    
    		if _, exists := out.Patches[cp.ApplyTo]; !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/go/types/struct.go

    				t, isPtr := deref(embeddedTyp)
    				switch u := under(t).(type) {
    				case *Basic:
    					if !isValid(t) {
    						// error was reported before
    						return
    					}
    					// unsafe.Pointer is treated like a regular pointer
    					if u.kind == UnsafePointer {
    						check.error(embeddedPos, InvalidPtrEmbed, "embedded field type cannot be unsafe.Pointer")
    					}
    				case *Pointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/struct.go

    				t, isPtr := deref(embeddedTyp)
    				switch u := under(t).(type) {
    				case *Basic:
    					if !isValid(t) {
    						// error was reported before
    						return
    					}
    					// unsafe.Pointer is treated like a regular pointer
    					if u.kind == UnsafePointer {
    						check.error(embeddedPos, InvalidPtrEmbed, "embedded field type cannot be unsafe.Pointer")
    					}
    				case *Pointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top