Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for itable (0.38 sec)

  1. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

            image: "{{ annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image }}"
          {{- else }}
            image: "{{ .ProxyImage }}"
          {{- end }}
            args:
            - istio-iptables
            - "-p"
            - {{ .MeshConfig.ProxyListenPort | default "15001" | quote }}
            - "-z"
            - {{ .MeshConfig.ProxyInboundListenPort | default "15006" | quote }}
            - "-u"
    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. guava/src/com/google/common/collect/MapMakerInternalMap.java

              }
            }
          }
          table = newTable;
          this.count = newCount;
        }
    
        boolean replace(K key, int hash, V oldValue, V newValue) {
          lock();
          try {
            preWriteCleanup();
    
            AtomicReferenceArray<E> table = this.table;
            int index = hash & (table.length() - 1);
            E first = table.get(index);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              }
            }
          }
          table = newTable;
          this.count = newCount;
        }
    
        boolean replace(K key, int hash, V oldValue, V newValue) {
          lock();
          try {
            preWriteCleanup();
    
            AtomicReferenceArray<E> table = this.table;
            int index = hash & (table.length() - 1);
            E first = table.get(index);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    	text-align: left;
    }
    
    table tr th,
    table tr td {
    	padding: 0.5625em 0.625em;
    	font-size: inherit;
    	color: var(--num-color);
    }
    
    table tr.even,
    table tr.alt,
    table tr:nth-of-type(even) {
    	background: var(--nav-color);
    }
    
    table thead tr th,
    table tfoot tr th,
    table tbody tr td,
    table tr td,
    table tfoot tr td {
    	display: table-cell;
    	line-height: 1.6;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. configure.py

      config_info_line('v1', 'Build with TensorFlow 1 API instead of TF 2 API.')
    
      print('Preconfigured Bazel build configs to DISABLE default on features:')
      config_info_line('nogcp', 'Disable GCP support.')
      config_info_line('nonccl', 'Disable NVIDIA NCCL support.')
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    		return curCtx, false, err
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGCBegin(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	seq := ev.args[0]
    	if o.gcState == gcUndetermined {
    		o.gcSeq = seq
    		o.gcState = gcRunning
    		o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    		return curCtx, true, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          return ResolveThenFunction(table);
        }
    
        // Resolve the else branch function.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
        // enabling reusing cached symbol table lookup.
        func::FuncOp ResolveElseFunction(::mlir::SymbolTableCollection* table) {
          if (table)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    		}
    	}
    	return filteredCIDRs
    }
    
    // iptablesJumpChain is tables of iptables chains that ipvs proxier used to install iptables or cleanup iptables.
    // `to` is the iptables chain we want to operate.
    // `from` is the source iptables chain
    var iptablesJumpChain = []struct {
    	table   utiliptables.Table
    	from    utiliptables.Chain
    	to      utiliptables.Chain
    	comment string
    }{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. tests/query_test.go

    	}
    
    	// SELECT COALESCE(age,'42') FROM users;
    	r = dryDB.Table("users").Select("COALESCE(age,?)", 42).Find(&User{})
    	if !regexp.MustCompile(`SELECT COALESCE\(age,.*\) FROM .*users.*`).MatchString(r.Statement.SQL.String()) {
    		t.Fatalf("Build Select with func, but got %v", r.Statement.SQL.String())
    	}
    
    	// named arguments
    	r = dryDB.Table("users").Select("COALESCE(age, @default)", sql.Named("default", 42)).Find(&User{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    // NewProxier returns a new Proxier given an iptables Interface instance.
    // Because of the iptables logic, it is assumed that there is only a single Proxier active on a machine.
    // An error will be returned if iptables fails to update or acquire the initial lock.
    // Once a proxier is created, it will keep iptables up to date in the background and
    // will not terminate if a particular iptables call fails.
    func NewProxier(ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top