Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for nothings (0.16 sec)

  1. src/cmd/link/internal/ld/data.go

    						// so generate section-targeted relocations in DWARF sections.
    						// See also machoreloc1.
    						o += ldr.SymValue(rs)
    					}
    				} else if target.IsWindows() {
    					// nothing to do
    				} else if target.IsAIX() {
    					o = ldr.SymValue(rs) + xadd
    				} else {
    					st.err.Errorf(s, "unhandled pcrel relocation to %s on %v", ldr.SymName(rs), target.HeadType)
    				}
    
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
            """
    
            when:
            run "insight"
    
            then:
            outputContains("No dependencies matching given input were found")
        }
    
        def "informs that nothing matches the input dependency"() {
            given:
            mavenRepo.module("org", "top").publish()
    
            buildFile << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	for i, t := range valueFuncType.InSlice() {
    		valueSteps := valueABI.call.stepsForValue(i)
    		methodSteps := methodABI.call.stepsForValue(i + 1)
    
    		// Zero-sized types are trivial: nothing to do.
    		if len(valueSteps) == 0 {
    			if len(methodSteps) != 0 {
    				panic("method ABI and value ABI do not align")
    			}
    			continue
    		}
    
    		// There are four cases to handle in translating each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      fi
      echo "$node_labels"
    }
    
    # yaml-map-string-stringarray converts the encoded structure to yaml format, and echoes the result
    # under the provided name. If the encoded structure is empty, echoes nothing.
    # 1: name to be output in yaml
    # 2: encoded map-string-string (which may contain duplicate keys - resulting in map-string-stringarray)
    # 3: key-value separator (defaults to ':')
    # 4: item separator (defaults to ',')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
      *control_ret_nodes = fbody.control_ret_nodes;
    }
    
    Status ImporterBase::ConvertLibFunction(llvm::StringRef func_name) {
      // If the library function has been converted already, nothing needs to be
      // done.
      if (tf_name_to_mlir_name_->find(std::string(func_name)) !=
          tf_name_to_mlir_name_->end())
        return absl::OkStatus();
    
      std::string mlir_func_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
                "items": {
                  "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n  - \"/healthz\" is legal\n  - \"/hea*\" is illegal\n  - \"/hea\" is legal but matches nothing\n  - \"/hea/*\" also matches nothing\n  - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.",
                "items": {
                  "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    					t.Fatalf("unexpected error is returned from selectHost: got: %v want: %v", err, test.wantError)
    				}
    				if test.possibleNodes.Len() == 0 {
    					if got != "" {
    						t.Fatalf("expected nothing returned as selected Node, but actually %s is returned from selectHost", got)
    					}
    					return
    				}
    				if !test.possibleNodes.Has(got) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		http.MethodDelete,
    		http.MethodConnect,
    		http.MethodOptions,
    		http.MethodTrace,
    	)
    
    	scope = log.RegisterScope("validation", "CRD validation debugging")
    
    	// EmptyValidate is a Validate that does nothing and returns no error.
    	EmptyValidate = RegisterValidateFunc("EmptyValidate",
    		func(config.Config) (Warning, error) {
    			return nil, nil
    		})
    
    	validateFuncs = make(map[string]ValidateFunc)
    )
    
    type (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
          <comment>We could probably have a specific element for a dev mailing list for things like CI,
            and maybe even a specific element for the user and scm mailing lists. Then leave the more
            lose structure for any other type of mailing list.</comment>
          <codeSegments>
            <codeSegment>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top