Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for lasta (0.09 sec)

  1. pkg/kubelet/kubelet_test.go

    	for _, s := range statuses {
    		assert.Equal(t, expectedState[s.Name], s.State, "%s: state", message)
    		assert.Equal(t, expectedLastTerminationState[s.Name], s.LastTerminationState, "%s: last terminated state", message)
    	}
    }
    
    // Test generateAPIPodStatus with different reason cache and old api pod status.
    func TestGenerateAPIPodStatusWithReasonCache(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_control_test.go

    	var err error
    	diff := desiredReplicas - replicas
    
    	// maxParallelRequests: MaxBatchSize of the controller is 500, We divide the diff by 4 to allow maximum of the half of the last batch.
    	if maxParallelRequests := min(500, math.Abs(float64(diff))/4); expectedMinParallelRequests < 2 || float64(expectedMinParallelRequests) > maxParallelRequests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

    // Tests that the pass tracks control dependencies for variables from a while
    // op's output.
    
    // Here:
    //   id0 = arg0
    //   while-inputs = (id0/arg0, arg1, arg1)
    //   while body pass through first and second arg, not last one
    //   while-results = (arg0, arg1, Unknown)
    //   #ID 2: read(arg0)      -> succ{5}
    //   #ID 3: read(arg1)      -> succ{6}
    //   #ID 4: read(unknown)   -> succ{5,6}
    //   #ID 5 : write(arg0)
    //   #ID 6 : write(arg1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

     * to go out of range of a 1Mb PC-relative offset
     * drop the pool now.
     */
    func (c *ctxt7) checkpool(p *obj.Prog) {
    	// If the pool is going to go out of range or p is the last instruction of the function,
    	// flush the pool.
    	if c.pool.size >= 0xffff0 || !ispcdisp(int32(p.Pc+4+int64(c.pool.size)-int64(c.pool.start)+8)) || p.Link == nil {
    		c.flushpool(p)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          buffer_idx_map_[index] = hashcode_to_pos[hash];
        }
        buffer_data_map_.erase(it);
        it = buffer_data_map_.begin();
        buffer_data_exported_ = true;
      }
      // pad 16 bytes for the last buffer for XNNPack
      result.Append("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
      // pad to be 16 bytes aligned
      {
        std::string pad(kFbAlignment - result.size() % kFbAlignment, '\0');
        result.Append(std::move(pad));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// We used to write an empty C file, but that gets complicated with go
    	// build -n. We tried using a file that does not exist, but that fails on
    	// systems with GCC version 4.2.1; that is the last GPLv2 version of GCC,
    	// so some systems have frozen on it. Now we pass an empty file on stdin,
    	// which should work at least for GCC and clang.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -m comment --comment "ip-masq: outbound traffic is subject to MASQUERADE (must be last in chain)" -j MASQUERADE
      fi
    
      # If METADATA_CONCEALMENT_NO_FIREWALL is set, don't create a firewall on this
      # node because we don't expect the daemonset to run on this node.
    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/cmd/internal/obj/s390x/asmz.go

    	op_KEBR    uint32 = 0xB308 // FORMAT_RRE        COMPARE AND SIGNAL (short BFP)
    	op_KIMD    uint32 = 0xB93E // FORMAT_RRE        COMPUTE INTERMEDIATE MESSAGE DIGEST
    	op_KLMD    uint32 = 0xB93F // FORMAT_RRE        COMPUTE LAST MESSAGE DIGEST
    	op_KM      uint32 = 0xB92E // FORMAT_RRE        CIPHER MESSAGE
    	op_KMAC    uint32 = 0xB91E // FORMAT_RRE        COMPUTE MESSAGE AUTHENTICATION CODE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top