Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for lib3 (2.4 sec)

  1. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.template.gen.yaml

                        "GENERATOR": "grpc"
                      }
                    }
                  }' > /var/lib/grpc/data/bootstrap.json
          containers:
          {{- range $index, $container := .Spec.Containers }}
          - name: {{ $container.Name }}
            env:
              - name: GRPC_XDS_BOOTSTRAP
                value: /var/lib/grpc/data/bootstrap.json
              - name: GRPC_GO_LOG_VERBOSITY_LEVEL
                value: "99"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.17.template.gen.yaml

                        "GENERATOR": "grpc"
                      }
                    }
                  }' > /var/lib/grpc/data/bootstrap.json
          containers:
          {{- range $index, $container := .Spec.Containers }}
          - name: {{ $container.Name }}
            env:
              - name: GRPC_XDS_BOOTSTRAP
                value: /var/lib/grpc/data/bootstrap.json
              - name: GRPC_GO_LOG_VERBOSITY_LEVEL
                value: "99"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	file string
    }
    
    func addelflib(list **Elflib, file string, vers string) *Elfaux {
    	var lib *Elflib
    
    	for lib = *list; lib != nil; lib = lib.next {
    		if lib.file == file {
    			goto havelib
    		}
    	}
    	lib = new(Elflib)
    	lib.next = *list
    	lib.file = file
    	*list = lib
    
    havelib:
    	for aux := lib.aux; aux != nil; aux = aux.next {
    		if aux.vers == vers {
    			return aux
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    			{"", 3, 0, 28, 0, 0, "", ""},
    			{"", 3, 0, 29, 0, 0, "", ""},
    			{"crt1.c", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"<command line>", 4, 0, 65521, 0, 0, "", ""},
    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"crtstuff.c", 4, 0, 65521, 0, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    		if libsOrdered[val] != "" {
    			continue
    		}
    		libsOrdered[val] = key
    	}
    
    	for _, lib := range libsOrdered {
    		// lib string is defined as base.a/mem.o or path/base.a/mem.o
    		n := strings.Split(lib, "/")
    		path := ""
    		base := n[len(n)-2]
    		mem := n[len(n)-1]
    		if len(n) > 2 {
    			path = lib[:len(lib)-len(base)-len(mem)-2]
    
    		}
    		ldimpf = &XcoffLdImportFile64{
    			Limpidpath: path,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    For example, you might need to extract different subtrees of the archive into different paths within the destination directory.
    The following sample uses the method to extract the files within the archive's `libs` directory into the root destination directory, rather than into a `libs` subdirectory:
    
    ====
    include::sample[dir="snippets/files/archives/kotlin",files="build.gradle.kts[tags=unpack-archive-subset-example]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    				targ += "#" + s.Version
    			}
    			checkImportSymName(s.Name)
    			checkImportSymName(targ)
    			fmt.Fprintf(stdout, "//go:cgo_import_dynamic %s %s %q\n", s.Name, targ, s.Library)
    		}
    		lib, _ := f.ImportedLibraries()
    		for _, l := range lib {
    			fmt.Fprintf(stdout, "//go:cgo_import_dynamic _ _ %q\n", l)
    		}
    		return
    	}
    
    	if f, err := macho.Open(obj); err == nil {
    		defer f.Close()
    		sym, _ := f.ImportedSymbols()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // to figure it out.
    // TODO(******@****.***): uses autoconf to detect whether ::std::wstring
    //   is available.
    
    // Cygwin 1.7 and below doesn't support ::std::wstring.
    // Solaris' libc++ doesn't support it either.  Android has
    // no support for it at least as recent as Froyo (2.2).
    # define GTEST_HAS_STD_WSTRING \
        (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_test.cc

    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/graph/tensor_id.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/lib/io/path.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tensorflow/core/platform/str_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

        # Execute functions manually or run configure.ps1.
    #>
    
    # IMPORTANT PLEASE NOTE:
    # Any time the file structure in the `windows` directory changes, `windows/BUILD`
    # and `k8s.io/release/lib/releaselib.sh` must be manually updated with the changes.
    # We HIGHLY recommend not changing the file structure, because consumers of
    # Kubernetes releases depend on the release structure remaining stable.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top