Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for noppad (0.21 sec)

  1. tensorflow/c/eager/tape.h

      if (VLOG_IS_ON(1)) {
        for (auto t : op_stack) {
          VLOG(1) << "  " << t;
        }
      }
      while (!op_stack.empty()) {
        const int64_t op = op_stack.back();
        VLOG(1) << "Popped " << op;
        op_stack.pop_back();
        auto op_it = state.op_tape.find(op);
        if (op_it == state.op_tape.end()) {
          // It is possible for ops to end up on the stack if they are unrelated to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  2. docs/ja/docs/deployment/docker.md

    コンテナを使わなければ、アプリケーションを起動時や再起動時に実行させるのは面倒で難しいかもしれません。しかし、**コンテナ**で作業する場合、ほとんどのケースでその機能はデフォルトで含まれています。✨
    
    ## レプリケーション - プロセス数
    
    **Kubernetes** や Docker Swarm モード、Nomad、あるいは複数のマシン上で分散コンテナを管理するための同様の複雑なシステムを使ってマシンの<abbr title="何らかの方法で接続され、一緒に動作するように構成されたマシンのグループ">クラスター</abbr>を構成している場合、 各コンテナで(Workerを持つGunicornのような)**プロセスマネージャ**を使用する代わりに、**クラスター・レベル**で**レプリケーション**を処理したいと思うでしょう。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    				}
    				names[name] = true
    			}
    		}
    	}
    
    	npad := 0
    	for _, f := range fld {
    		for _, n := range f.Names {
    			if n.Name != prefix {
    				n.Name = strings.TrimPrefix(n.Name, prefix)
    			}
    			if n.Name == "_" {
    				// Use exported name instead.
    				n.Name = "Pad_cgo_" + strconv.Itoa(npad)
    				npad++
    			}
    			n.Name = upper(n.Name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	PMULHUW:         "PMULHUW",
    	PMULHW:          "PMULHW",
    	PMULLD:          "PMULLD",
    	PMULLW:          "PMULLW",
    	PMULUDQ:         "PMULUDQ",
    	POP:             "POP",
    	POPA:            "POPA",
    	POPAD:           "POPAD",
    	POPCNT:          "POPCNT",
    	POPF:            "POPF",
    	POPFD:           "POPFD",
    	POPFQ:           "POPFQ",
    	POR:             "POR",
    	PREFETCHNTA:     "PREFETCHNTA",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	// Ensure there is enough budget for slow processing since
    	// the entire watch cache is going to be served through the
    	// interval and events won't be popped from the cacheWatcher's
    	// input channel until much later.
    	cacher.dispatchTimeoutBudget.returnUnused(100 * time.Millisecond)
    
    	// We define a custom index validator such that the interval is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "not bound to a pod",
    		},
    		{
    			name:       "forbid create of token bound to nonexistant pod",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(makeTokenRequest("nopod", "someuid"), nil, tokenrequestKind, "ns", "mysa", svcacctResource, "token", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "not found",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    func writeGDBLinkerScript() string {
    	name := "fix_debug_gdb_scripts.ld"
    	path := filepath.Join(*flagTmpdir, name)
    	src := `SECTIONS
    {
      .debug_gdb_scripts BLOCK(__section_alignment__) (NOLOAD) :
      {
        *(.debug_gdb_scripts)
      }
    }
    INSERT AFTER .debug_types;
    `
    	err := os.WriteFile(path, []byte(src), 0666)
    	if err != nil {
    		Errorf(nil, "WriteFile %s failed: %v", name, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	}
    	if len(q.tail) > 0 {
    		return q.tail[0]
    	}
    	return nil
    }
    
    // cleanFrontNotWaiting pops any wantConns that are no longer waiting from the head of the
    // queue, reporting whether any were popped.
    func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
    	for {
    		w := q.peekFront()
    		if w == nil || w.waiting() {
    			return cleaned
    		}
    		q.popFront()
    		cleaned = true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    03D7          ; valid                                  # 3.0  GREEK KAI SYMBOL
    03D8          ; mapped                 ; 03D9          # 3.2  GREEK LETTER ARCHAIC KOPPA
    03D9          ; valid                                  # 3.2  GREEK SMALL LETTER ARCHAIC KOPPA
    03DA          ; mapped                 ; 03DB          # 1.1  GREEK LETTER STIGMA
    03DB          ; valid                                  # 3.0  GREEK SMALL LETTER STIGMA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    lohmus.me loisirs.bj lol lolipop.io lolipopmc.jp lolitapunk.jp lom.it lom.no lombardia.it lombardy.it lomo.jp lomza.pl lon-1.paas.massivegrid.net lon-2.paas.massivegrid.net lon.wafaicloud.com london london.cloudapps.digital london.museum londrina.br loppa.no lorenskog.no losangeles.museum loseyourip.com loten.no lotte lotto louvre.museum love lovepop.jp lovesick.jp lowicz.pl loyalist.museum lpages.co lpl lplfinancial lpusercontent.com lr ls lt lt.eu.org lt.it lt.ua ltd ltd.co.im ltd.cy ltd.gi ltd.hk...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top