Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 143 for vers (0.04 sec)

  1. pkg/kubelet/server/server.go

    		if err != nil {
    			klog.ErrorS(err, "Authorization error", "user", attrs.GetUser().GetName(), "verb", attrs.GetVerb(), "resource", attrs.GetResource(), "subresource", attrs.GetSubresource())
    			msg := fmt.Sprintf("Authorization error (user=%s, verb=%s, resource=%s, subresource=%s)", attrs.GetUser().GetName(), attrs.GetVerb(), attrs.GetResource(), attrs.GetSubresource())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    		// and the types of corresponding elements unify.
    		if y, ok := y.(*Tuple); ok {
    			if x.Len() == y.Len() {
    				if x != nil {
    					for i, v := range x.vars {
    						w := y.vars[i]
    						if !u.nify(v.typ, w.typ, mode, p) {
    							return false
    						}
    					}
    				}
    				return true
    			}
    		}
    
    	case *Signature:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            spec.compileOptions.debug = true
    
            then:
            builder.build() == defaultOptions
    
            when:
            spec.compileOptions.debugOptions.debugLevel = "source,vars"
    
            then:
            builder.build() == ["-g:source,vars"] + defaultOptions.findAll { it != "-g" }
    
            when:
            spec.compileOptions.debug = false
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. docs/pt/docs/index.md

    </details>
    
    ### Verifique
    
    Abra seu navegador em <a href="http://127.0.0.1:8000/items/5?q=somequery" class="external-link" target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>.
    
    Você verá a resposta JSON como:
    
    ```JSON
    {"item_id": 5, "q": "somequery"}
    ```
    
    Você acabou de criar uma API que:
    
    * Recebe requisições HTTP nas _rotas_ `/` e `/items/{item_id}`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/next_pluggable_device/c_api.cc

    }
    
    void TF_LockVariableInfos(TF_VariableInfo** vars, int num_vars,
                              TF_Status* status) {
      std::vector<tensorflow::VariableInfo*> variable_ptrs;
      variable_ptrs.reserve(num_vars);
      for (int i = 0; i < num_vars; ++i) {
        variable_ptrs.push_back(&(vars[i]->var_info));
      }
      absl::Status cc_status = LockVariables(absl::MakeSpan(variable_ptrs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. schema/relationship.go

    	}
    
    	references := make([]interface{}, 0, len(constraint.References))
    	for _, field := range constraint.References {
    		references = append(references, clause.Column{Name: field.DBName})
    	}
    	vars = append(vars, clause.Table{Name: constraint.Name}, foreignKeys, clause.Table{Name: constraint.ReferenceSchema.Table}, references)
    	return
    }
    
    func (rel *Relationship) ParseConstraint() *Constraint {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. internal/config/config.go

    	}
    	validKeys = append(validKeys, Comment)
    
    	subSysEnvVars := env.List(fmt.Sprintf("%s%s", EnvPrefix, strings.ToUpper(subSys)))
    
    	// Set of env vars for the sub-system to validate.
    	candidates := set.CreateStringSet(subSysEnvVars...)
    
    	// Remove all default target env vars from the candidates set (as they
    	// are valid).
    	for _, param := range validKeys {
    		paramEnvName := getEnvVarName(subSys, Default, param)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. src/go/types/infer.go

    		// use) type parameters, we don't care about those either.
    		// Thus, we only need to look at the input and result parameters.
    		return t.params != nil && w.varList(t.params.vars) || t.results != nil && w.varList(t.results.vars)
    
    	case *Interface:
    		tset := t.typeSet()
    		for _, m := range tset.methods {
    			if w.isParameterized(m.typ) {
    				return true
    			}
    		}
    		return tset.is(func(t *term) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    		// use) type parameters, we don't care about those either.
    		// Thus, we only need to look at the input and result parameters.
    		return t.params != nil && w.varList(t.params.vars) || t.results != nil && w.varList(t.results.vars)
    
    	case *Interface:
    		tset := t.typeSet()
    		for _, m := range tset.methods {
    			if w.isParameterized(m.typ) {
    				return true
    			}
    		}
    		return tset.is(func(t *term) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. Makefile

    build: checks build-debugging ## builds minio to $(PWD)
    	@echo "Building minio binary to './minio'"
    	@CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
    
    hotfix-vars:
    	$(eval LDFLAGS := $(shell MINIO_RELEASE="RELEASE" MINIO_HOTFIX="hotfix.$(shell git rev-parse --short HEAD)" go run buildscripts/gen-ldflags.go $(shell git describe --tags --abbrev=0 | \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top