Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 165 for addSdk (0.12 sec)

  1. src/cmd/go/internal/modload/load.go

    				}
    			}
    		}
    	}
    
    	ld.requirements = rs
    	return changed, nil
    }
    
    // resolveMissingImports returns a set of modules that could be added as
    // dependencies in order to resolve missing packages from pkgs.
    //
    // The newly-resolved packages are added to the addedModuleFor map, and
    // resolveMissingImports returns a map from each new module version to
    // the first missing package that module would resolve.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		case k8s.QueryParamMatchRegularExpression:
    			res[string(qp.Name)] = &istio.StringMatch{
    				MatchType: &istio.StringMatch_Regex{Regex: qp.Value},
    			}
    		default:
    			// Should never happen, unless a new field is added
    			return nil, &ConfigError{Reason: InvalidConfiguration, Message: fmt.Sprintf("unknown type: %q is not supported QueryParams type", tp)}
    		}
    	}
    
    	if len(res) == 0 {
    		return nil, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    		opts.port, meshGateway, svcConfigs)...)
    	return out
    }
    
    // buildSidecarOutboundListener builds a single listener and
    // adds it to the listenerMap provided by the caller.  Listeners are added
    // if one doesn't already exist. HTTP listeners on same port are ignored
    // (as vhosts are shipped through RDS).  TCP listeners on same port are
    // allowed only if they have different CIDR matches.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. .bazelrc

    build:rbe_linux_cpu --platforms="@sigbuild-r2.17-clang_config_platform//:platform"
    # This is needed for all Clang17 builds but must not be present in GCC builds.
    build:rbe_linux_cpu --copt=-Wno-error=unused-command-line-argument
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    # Can be removed once upb is updated, since a type definition is used within
    # offset of in the current version of ubp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        /**
         * Allows repositories to be added to this script.
         */
        public RepositoriesBuilder repositories() {
            return block.repositories;
        }
    
        /**
         * Allows dependencies to be added to this script.
         */
        public DependenciesBuilder dependencies() {
            return block.dependencies;
        }
    
        /**
         * Allows test suites to be added to this script.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    			if err != nil {
    				return // findError will report the error later.
    			}
    
    			// If the version in m's go.mod file does not support pruning, then we
    			// cannot assume that the explicit requirements of m (added by loadOne)
    			// are sufficient to build the packages it contains. We must load its full
    			// transitive dependency graph to be sure that we see all relevant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            total_quantized_func_count));
        lines.push_back(absl::StrFormat("Number of quantize layers added: %d",
                                        quantize_func_count));
        lines.push_back(absl::StrFormat("Number of dequantize layers added: %d",
                                        dequantize_func_count));
        lines.push_back("");
    
        // Make the report visible by default.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[unix_file_permissions_deprecated]]
    ==== Unix mode based file permissions deprecated ====
    
    A new API for defining file permissions has been added in Gradle 8.3, see:
    
    - link:{javadocPath}/org/gradle/api/file/FilePermissions.html[FilePermissions].
    - link:{javadocPath}/org/gradle/api/file/ConfigurableFilePermissions.html[ConfigurableFilePermissions].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier.go

    	filterChainsData *bytes.Buffer
    	natChains        proxyutil.LineBuffer
    	filterChains     proxyutil.LineBuffer
    	natRules         proxyutil.LineBuffer
    	filterRules      proxyutil.LineBuffer
    	// Added as a member to the struct to allow injection for testing.
    	netlinkHandle NetLinkHandle
    	// ipsetList is the list of ipsets that ipvs proxier used.
    	ipsetList map[string]*IPSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    // the UTF-8 string s, with a terminating NUL added. If s
    // contains a NUL byte this function panics instead of
    // returning an error.
    //
    // Deprecated: Use [UTF16PtrFromString] instead.
    func StringToUTF16Ptr(s string) *uint16 { return &StringToUTF16(s)[0] }
    
    // UTF16PtrFromString returns pointer to the UTF-16 encoding of
    // the UTF-8 string s, with a terminating NUL added. If s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top