Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for unixOS (0.14 sec)

  1. src/net/http/fs_test.go

    }
    
    func TestFileServerSortsNames(t *testing.T) { run(t, testFileServerSortsNames) }
    func testFileServerSortsNames(t *testing.T, mode testMode) {
    	const contents = "I am a fake file"
    	dirMod := time.Unix(123, 0).UTC()
    	fileMod := time.Unix(1000000000, 0).UTC()
    	fs := fakeFS{
    		"/": &fakeFileInfo{
    			dir:     true,
    			modtime: dirMod,
    			ents: []*fakeFileInfo{
    				{
    					basename: "b",
    					modtime:  fileMod,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tensorflow/BUILD

                  --input $(location :tensorflow_def_file) \\
                  --output $@
              """,
            "//conditions:default": "touch $@",  # Just a placeholder for Unix platforms
        }),
        tools = ["@local_config_def_file_filter//:def_file_filter"],
        visibility = ["//visibility:public"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		v1.ResourceMemory: "500",
    	}
    
    	epochTime  = metav1.NewTime(time.Unix(0, 0))
    	epochTime1 = metav1.NewTime(time.Unix(0, 1))
    	epochTime2 = metav1.NewTime(time.Unix(0, 2))
    	epochTime3 = metav1.NewTime(time.Unix(0, 3))
    	epochTime4 = metav1.NewTime(time.Unix(0, 4))
    	epochTime5 = metav1.NewTime(time.Unix(0, 5))
    	epochTime6 = metav1.NewTime(time.Unix(0, 6))
    )
    
    func getDefaultDefaultPreemptionArgs() *config.DefaultPreemptionArgs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            "dirPermissions"     | "dirPermissions { unix(\"0700\") }"               | "dirPermissions { unix(\"0755\") }"
            "filePermissions"    | "filePermissions { unix(\"0600\") }"              | "filePermissions { unix(\"0644\") }"
            "filteringCharset"   | "filteringCharset = 'iso8859-1'"                  | "filteringCharset = 'utf-8'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    			// If the file already exists, the semantics of
    			// the Unix open system call is to preserve the
    			// existing permissions. If we pass CREATE_ALWAYS
    			// and FILE_ATTRIBUTE_READONLY to CreateFile,
    			// and the file already exists, CreateFile will
    			// change the file permissions.
    			// Avoid that to preserve the Unix semantics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/time/format.go

    //	01/02 03:04:05PM '06 -0700
    //
    // (January 2, 15:04:05, 2006, in time zone seven hours west of GMT).
    // That value is recorded as the constant named [Layout], listed below. As a Unix
    // time, this is 1136239445. Since MST is GMT-0700, the reference would be
    // printed by the Unix date command as:
    //
    //	Mon Jan 2 15:04:05 MST 2006
    //
    // It is a regrettable historic error that the date uses the American convention
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    				case EINVAL:
    					return errEINVAL
    				case ENOENT:
    					return errENOENT
    		*/
    	}
    	if ZosTraceLevel > 0 {
    		var name string
    		if reg == nil {
    			reg = regexp.MustCompile("(^unix\\.[^/]+$|.*\\/unix\\.[^/]+$)")
    		}
    		i := 1
    		pc, file, line, ok := runtime.Caller(i)
    		if ok {
    			name = runtime.FuncForPC(pc).Name()
    		}
    		for ok && reg.MatchString(runtime.FuncForPC(pc).Name()) {
    			i += 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    				bind.bindToPort = true
    			} else if strings.HasPrefix(egressListener.IstioListener.Bind, model.UnixAddressPrefix) {
    				// If the bind is a Unix domain socket, set bindtoPort to true as it makes no
    				// sense to have ORIG_DST listener for unix domain socket listeners.
    				bind.bindToPort = true
    			}
    		}
    
    		// If capture mode is NONE i.e., bindToPort is true, and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		CreatedAt:           time.Unix(0, status.CreatedAt),
    		Resources:           cStatusResources,
    		User:                cStatusUser,
    	}
    
    	if status.State != runtimeapi.ContainerState_CONTAINER_CREATED {
    		// If container is not in the created state, we have tried and
    		// started the container. Set the StartedAt time.
    		cStatus.StartedAt = time.Unix(0, status.StartedAt)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C11 5.0.0 20150116 (experimental) -Asystem=linux -Asystem=unix -Asystem=posix -g", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(12), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "go-relocation-test-gcc5-ppc.c", Class: dwarf.ClassString},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top