Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 668 for detective (0.17 sec)

  1. src/internal/types/testdata/check/cycles0.go

    }
    
    // test cases for issue 6667
    
    type A [10]map[A /* ERROR "invalid map key" */ ]bool
    
    type S struct {
    	m map[S /* ERROR "invalid map key" */ ]bool
    }
    
    // test cases for issue 7236
    // (cycle detection must not be dependent on starting point of resolution)
    
    type (
    	P1 *T9
    	T9 /* ERROR "invalid recursive type: T9 refers to itself" */ T9
    
    	T10 /* ERROR "invalid recursive type: T10 refers to itself" */ T10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/math/rand/auto_test.go

    package rand_test
    
    import (
    	. "math/rand"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    	// Pull out 10 int64s from the global source
    	// and then check that they don't appear in that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. internal/config/browser/browser.go

    }
    
    // IsHSTSIncludeSubdomains - is HSTS 'includeSubdomains' directive enabled
    func (browseCfg *Config) IsHSTSIncludeSubdomains() string {
    	configLock.RLock()
    	defer configLock.RUnlock()
    	if browseCfg.HSTSSeconds > 0 && browseCfg.HSTSIncludeSubdomains {
    		return config.EnableOn
    	}
    	return config.EnableOff
    }
    
    // IsHSTSPreload - is HSTS 'preload' directive enabled
    func (browseCfg *Config) IsHSTSPreload() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (1)
  4. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/MavenToolchainsIntegrationTest.groovy

            executer.withToolchainDetectionEnabled()
            toolchainsFile << "not xml"
    
            when:
            succeeds 'javaToolchains', '--info'
    
            then:
            outputContains "Java Toolchain auto-detection failed to parse Maven Toolchains located at ${toolchainsFile}. Content is not allowed in prolog."
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	} else if e.Filename != "" {
    		pos = fmt.Sprintf("%s: ", e.Filename)
    	}
    
    	var directive string
    	if e.ModPath != "" {
    		directive = fmt.Sprintf("%s %s: ", e.Verb, e.ModPath)
    	} else if e.Verb != "" {
    		directive = fmt.Sprintf("%s: ", e.Verb)
    	}
    
    	return pos + directive + e.Err.Error()
    }
    
    func (e *Error) Unwrap() error { return e.Err }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_replace_old.txt

    # Regression test for https://golang.org/issue/46659.
    #
    # If a 'replace' directive specifies an older-than-selected version of a module,
    # 'go mod tidy' shouldn't try to add that version to the build list to resolve a
    # missing package: it won't be selected, and would cause the module loader to
    # loop indefinitely trying to resolve the package.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    ! stderr panic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1004 bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/flagdefs.go

    	"bools":            true,
    	"buildtag":         true,
    	"buildtags":        true,
    	"cgocall":          true,
    	"composites":       true,
    	"copylocks":        true,
    	"defers":           true,
    	"directive":        true,
    	"errorsas":         true,
    	"framepointer":     true,
    	"httpresponse":     true,
    	"ifaceassert":      true,
    	"loopclosure":      true,
    	"lostcancel":       true,
    	"methods":          true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue21576.go

    //go:build !nacl && !js && !wasip1 && !gccgo
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    // Ensure that deadlock detection can still
    // run even with an import of "_ os/signal".
    
    package main
    
    import (
    	"bytes"
    	"context"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"time"
    )
    
    const prog = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/doc.go

    	BGE CR7, target		<=>	bge cr7, target
    
    Refer to the ISA for more information on additional values for the BC instruction,
    how to handle OVG information, and much more.
    
    5. Align directive
    
    Starting with Go 1.12, Go asm supports the PCALIGN directive, which indicates
    that the next instruction should be aligned to the specified value. Currently
    8 and 16 are the only supported values, and a maximum of 2 NOPs will be added
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util.cc

      // The clustering code must avoid adding cycles to the graph to prevent
      // deadlock. However, the graph may contain loops, which would trigger the
      // cycle detection code. To handle loops, we alter the structure of the cycle
      // detection graph, disconnecting each loop from the enclosing graph.
      // Specifically, we:
      // * add a new "frame" node for each loop.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top