Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for lasta (0.21 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	                  ::= <substitution>
    //
    //	<decltype> ::= Dt <expression> E
    //	           ::= DT <expression> E
    func (st *state) prefix() AST {
    	var a AST
    
    	// The last name seen, for a constructor/destructor.
    	var last AST
    
    	var module AST
    
    	getLast := func(a AST) AST {
    		for {
    			if t, ok := a.(*Template); ok {
    				a = t.Name
    			} else if q, ok := a.(*Qualified); ok {
    				a = q.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            ),
            0.65,
        )
    
        if merge_fusion_with_dequantize:
          # Check activation functions are explicitly present.
          # If present the last op before return should be stablehlo.clamp for relu6
          # and stablehlo.maximum for relu.
          if activation_fn is nn_ops.relu6:
            self.assertRegex(module_str, r'stablehlo.clamp.*\n.*return')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    				},
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy",
    					},
    				},
    			},
    			{
    				Match: &tpb.AccessLogging_LogSelector{
    					Mode: tpb.WorkloadMode_CLIENT_AND_SERVER, // pickup last filter
    				},
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy",
    					},
    				},
    			},
    		},
    	}
    	multiFiltersDisabled := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    
    func roundUp(a, b int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			if len(c.Path) > 2 {
    				adverb = "indirectly "
    			}
    			firstReason := reason(c.Path[0])
    			last := c.Path[len(c.Path)-1]
    			if c.Err != nil {
    				base.Errorf("go: %v %srequires %v: %v", firstReason, adverb, last, c.UnwrapModuleError())
    			} else {
    				base.Errorf("go: %v %srequires %v, not %v", firstReason, adverb, last, reason(c.Constraint))
    			}
    		}
    		return false
    	}
    	if !changed {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // completed. This has the effect of publishing the heap profile
    // snapshot as of the last mark termination without advancing the heap
    // profile cycle.
    func mProf_PostSweep() {
    	// Flush cycle C+1 to the active profile so everything as of
    	// the last mark termination becomes visible. *Don't* advance
    	// the cycle, since we're still accumulating allocs in cycle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

                  return true;
                }
              }
            }
            sum += segment.modCount;
          }
          if (sum == last) {
            break;
          }
          last = sum;
        }
        return false;
      }
    
      @CheckForNull
      @CanIgnoreReturnValue
      @Override
      public V put(K key, V value) {
        checkNotNull(key);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/reflect/type.go

    			} else {
    				j = h // preserves f(j) == true
    			}
    		}
    		// i == j, f(i-1) == false, and f(j) (= f(i)) == true  =>  answer is i.
    
    		// Having found the first, linear scan forward to find the last.
    		// We could do a second binary search, but the caller is going
    		// to do a linear scan anyway.
    		for j := i; j < len(offs); j++ {
    			typ := rtypeOff(section, offs[j])
    			if stringFor(typ) != s {
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public String getName () {
            return this.fileLocator.getName();
        }
    
    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
         * does not have a parent. In this case <code>smb://</code> is returned.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The report provides both names and types.
    As a last resort, you can also check a plugin's source code, but that shouldn't be necessary in the majority of cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top