Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for globAbs (0.16 sec)

  1. src/cmd/go/testdata/script/mod_download_concurrent_read.txt

    	cmd := exec.Command("go", "mod", "download", "-modcacherw", "rsc.io/quote@v1.5.2")
    	cmd.Stderr = os.Stderr
    	cmd.Env = append(os.Environ(), "GOPATH="+gopath)
    	return cmd.Run()
    }
    
    // readCache repeatedly globs for go.mod files in the given cache, then opens
    // those files for reading. When the done chan is closed, readCache closes
    // files and returns.
    func readCache(gopath string, done <-chan struct{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. src/mime/type_unix.go

    			// Not a bare extension, but a glob. Ignore for now:
    			// - we do not have an implementation for this glob
    			//   syntax (translation to path/filepath.Match could
    			//   be possible)
    			// - support for globs with weight ordering would have
    			//   performance impact to all lookups to support the
    			//   rarely seen glob entries
    			// - trying to match glob metacharacters literally is
    			//   not useful
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pkg/config/security/security.go

    		}
    	}
    	return nil
    }
    
    func CheckValidPathTemplate(key string, paths []string) error {
    	for _, path := range paths {
    		containsPathTemplate := ContainsPathTemplate(path)
    		globs := strings.Split(path, "/")
    		for _, glob := range globs {
    			// If glob is a supported path template, skip the check.
    			if glob == MatchAnyTemplate || glob == MatchOneTemplate {
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. test/nilptr3.go

    	// to be turned into its own pseudo-op in order to see
    	// the indirect.
    	_ = *arrayp // ERROR "generated nil check"
    
    	// 0-byte indirect doesn't suffice.
    	// we don't registerize globals, so there are no removed.* nil checks.
    	_ = *array0p // ERROR "generated nil check"
    	_ = *array0p // ERROR "removed nil check"
    
    	_ = *intp    // ERROR "removed nil check"
    	_ = *arrayp  // ERROR "removed nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let summary = "Remove duplicate 'tf_saved_model.bound_input' bindings.";
      let constructor = "mlir::tf_saved_model::CreateDedupBoundInputBindingPass()";
    }
    
    def LowerGlobalsToMlProgramPass: Pass<"tf-saved-model-lower-globals-to-mlprogram", "mlir::ModuleOp"> {
      let summary = "Remove (and remap) function arguments that map to global tensors.";
      let description = [{
        This pass will lower AssignVariableOp and ReadVariableOp to their ml_program
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. pkg/monitoring/monitoring_test.go

    	mt.Assert(testConditionalSum.Name(), map[string]string{"name": "foo", "kind": "bar"}, monitortest.Exactly(1))
    }
    
    // Create distinct metrics for this test, otherwise we are order-dependant since they are globals
    var (
    	testEmptyGauge = monitoring.NewGauge(
    		"test_empty_gauge",
    		"Testing empty gauge functionality",
    	)
    	testEmptySum = monitoring.NewSum(
    		"test_empty_sum",
    		"Testing empty sum",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/DefaultPathKeyFileStoreTest.groovy

            then:
            fsBase.file("a/b").directory
            fsBase.file("a/b/c").text == "abc"
            fsBase.file("a/c/a").text == "aca"
        }
    
        def "can search via globs"() {
            when:
            store.move("a/a/a", createFile("a"))
            store.move("a/a/b", createFile("b"))
            store.move("a/b/a", createFile("c"))
    
            then:
            store.search("**/a").size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 09:57:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. docs/pt/docs/advanced/events.md

    Fazendo isso em funções separadas que não compartilham lógica ou variáveis entre elas é mais difícil já que você precisa armazenar os valores em variáveis globais ou truques parecidos.
    
    Por causa disso, agora é recomendado em vez disso usar o `lifespan` como explicado acima.
    
    ## Detalhes técnicos
    
    Só um detalhe técnico para nerds curiosos. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top