Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for libc (0.05 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    		constructDevices([]string{"dev1"}),
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/dev1": "/dev/dev1"}),
    			withMounts(map[string]string{"/home/lib1": "/usr/lib1"}),
    		),
    	)
    
    	testManager.healthyDevices[extendedResourceName] = sets.New[string]()
    	testManager.healthyDevices[extendedResourceName].Insert("dev1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

        libsDirectory.set(layout.buildDirectory.dir("custom-libs"))
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'base'
    }
    
    base {
        archivesName = "gradle"
        distsDirectory = layout.buildDirectory.dir('custom-dist')
        libsDirectory = layout.buildDirectory.dir('custom-libs')
    }
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		return err
    	}
    
    	// The Linux kernel faccessat system call does not take any flags.
    	// The glibc faccessat implements the flags itself; see
    	// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/unix/sysv/linux/faccessat.c;hb=HEAD
    	// Because people naturally expect syscall.Faccessat to act
    	// like C faccessat, we do the same.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                BlockStatement vc = new BlockStatement(comment, "versionCatalogs");
                vc.body.add(new MethodInvocation(null, new MethodInvocationExpression(null, "create", expressionValues("libs", new LiteralValue("{ from(files(\"../gradle/libs.versions.toml\")) }")))));
                dependencyResolutionManagement.add(vc);
            }
        }
    
        private static class TaskConfiguration implements Statement, ExpressionValue {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    - You cannot use a `Map` as a dependency declaration for Kotlin or Java.
    - You cannot use a bundle as a dependency declaration directly (`implementation(libs.bundles.testing)`).
    Use `implementation.bundle(libs.bundles.testing)` instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    				// are laid out in dependency order.
    				lib.DupTextSyms = append(lib.DupTextSyms, sym.LoaderSym(gi))
    				continue // symbol in different object
    			}
    			if dupok {
    				lib.DupTextSyms = append(lib.DupTextSyms, sym.LoaderSym(gi))
    				continue
    			}
    
    			lib.Textp = append(lib.Textp, sym.LoaderSym(gi))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.ms-powerpoint.template.macroenabled.12",
    				"application/vnd.ms-project",
    				"application/x-project",
    				"application/vnd.ms-tnef",
    				"application/vnd.ms-wmdrm.lic-chlg-req",
    				"application/vnd.ms-wmdrm.lic-resp",
    				"application/vnd.ms-wmdrm.meter-chlg-req",
    				"application/vnd.ms-wmdrm.meter-resp",
    				"application/vnd.ms-word.document.macroenabled.12",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. configure.py

    _DEFAULT_PROMPT_ASK_ATTEMPTS = 10
    
    _TF_BAZELRC_FILENAME = '.tf_configure.bazelrc'
    _TF_WORKSPACE_ROOT = ''
    _TF_BAZELRC = ''
    _TF_CURRENT_BAZEL_VERSION = None
    
    NCCL_LIB_PATHS = [
        'lib64/', 'lib/powerpc64le-linux-gnu/', 'lib/x86_64-linux-gnu/', ''
    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  9. 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)
  10. src/cmd/cgo/gcc.go

    		name := f.Name
    		ft := f.Type
    
    		// In godefs mode, if this field is a C11
    		// anonymous union then treat the first field in the
    		// union as the field in the struct. This handles
    		// cases like the glibc <sys/resource.h> file; see
    		// issue 6677.
    		if *godefs {
    			if st, ok := f.Type.(*dwarf.StructType); ok && name == "" && st.Kind == "union" && len(st.Field) > 0 && !used[st.Field[0].Name] {
    				name = st.Field[0].Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top