Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for unixOS (0.3 sec)

  1. src/crypto/x509/verify_test.go

    }
    
    func testVerify(t *testing.T, test verifyTest, useSystemRoots bool) {
    	opts := VerifyOptions{
    		Intermediates: NewCertPool(),
    		DNSName:       test.dnsName,
    		CurrentTime:   time.Unix(test.currentTime, 0),
    		KeyUsages:     test.keyUsages,
    	}
    
    	if !useSystemRoots {
    		opts.Roots = NewCertPool()
    		for j, root := range test.roots {
    			ok := opts.Roots.AppendCertsFromPEM([]byte(root))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	}
    }
    
    // pollDuration is an arbitrary interval to wait between checks when polling for
    // a condition to occur.
    const pollDuration = 5 * time.Millisecond
    
    const fakeDBName = "foo"
    
    var chrisBirthday = time.Unix(123456789, 0)
    
    func newTestDB(t testing.TB, name string) *DB {
    	return newTestDBConnector(t, &fakeConnector{name: fakeDBName}, name)
    }
    
    func newTestDBConnector(t testing.TB, fc *fakeConnector, name string) *DB {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    			job := newJob(tc.parallelism, tc.completions, tc.backoffLimit, batch.NonIndexedCompletion)
    			job.Spec.ActiveDeadlineSeconds = &tc.activeDeadlineSeconds
    			job.Spec.Suspend = ptr.To(tc.suspend)
    			start := metav1.Unix(metav1.Now().Time.Unix()-tc.startTime, 0)
    			job.Status.StartTime = &start
    			sharedInformerFactory.Batch().V1().Jobs().Informer().GetIndexer().Add(job)
    			podIndexer := sharedInformerFactory.Core().V1().Pods().Informer().GetIndexer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    func (i Data) GoString() string { return stringName(uint32(i), dataStrings, true) }
    
    // OSABI is found in Header.Ident[EI_OSABI] and Header.OSABI.
    type OSABI byte
    
    const (
    	ELFOSABI_NONE       OSABI = 0   /* UNIX System V ABI */
    	ELFOSABI_HPUX       OSABI = 1   /* HP-UX operating system */
    	ELFOSABI_NETBSD     OSABI = 2   /* NetBSD */
    	ELFOSABI_LINUX      OSABI = 3   /* Linux */
    	ELFOSABI_HURD       OSABI = 4   /* Hurd */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    				if x.Peak > x2.PeakRate {
    					x2.PeakRate = x.Peak
    				}
    				v2.XferStats[replication.MetricName(rm)] = x2
    			}
    			sm.Metrics[dID] = v2
    		}
    	}
    	sm.Uptime = UTCNow().Unix() - globalBootTime.Unix()
    	return sm, nil
    }
    
    // mergeWithCurrentLCConfig - merges the given ilm expiry configuration with existing for the current site and returns
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    // Code generated by mkmerge; DO NOT EDIT.
    
    //go:build linux
    
    package unix
    
    import "syscall"
    
    const (
    	AAFS_MAGIC                                  = 0x5a3c69f0
    	ADFS_SUPER_MAGIC                            = 0xadf5
    	AFFS_SUPER_MAGIC                            = 0xadff
    	AFS_FS_MAGIC                                = 0x6b414653
    	AFS_SUPER_MAGIC                             = 0x5346414f
    	AF_ALG                                      = 0x26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      local -r file="$1"
      local -r container_runtime_endpoint="${CONTAINER_RUNTIME_ENDPOINT:-unix:///run/containerd/containerd.sock}"
      sed -i \
        -e "s@{{ *fluentd_container_runtime_service *}}@${FLUENTD_CONTAINER_RUNTIME_SERVICE:-${CONTAINER_RUNTIME_NAME:-containerd}}@g" \
        -e "s@{{ *container_runtime_endpoint *}}@${container_runtime_endpoint#unix://}@g" \
        "${file}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	case StateNew:
    		srv.trackConn(c, true)
    	case StateHijacked, StateClosed:
    		srv.trackConn(c, false)
    	}
    	if state > 0xff || state < 0 {
    		panic("internal error")
    	}
    	packedState := uint64(time.Now().Unix()<<8) | uint64(state)
    	c.curState.Store(packedState)
    	if !runHook {
    		return
    	}
    	if hook := srv.ConnState; hook != nil {
    		hook(nc, state)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    const (
    	SYS_LOG                             = 0x17  // 23
    	SYS_COSH                            = 0x18  // 24
    	SYS_TANH                            = 0x19  // 25
    	SYS_EXP                             = 0x1A  // 26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: One or more labels that indicate a specific set of pods/VMs on which this gateway configuration should be applied. type: object servers: description: A list of server specifications. items: properties: bind: description: The ip or the Unix domain socket to which the listener should be bound to. type: string defaultEndpoint: type: string hosts: description: One or more hosts exposed by this gateway. items: type: string type: array name: description: An optional name of the server, when...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top