Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,638 for CLEAR (0.03 sec)

  1. guava/src/com/google/common/collect/ForwardingMap.java

        }
        return null;
      }
    
      /**
       * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
       * #entrySet}. In many cases, you may wish to override {@link #clear} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected void standardClear() {
        Iterators.clear(entrySet().iterator());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractTable.java

        return (row == null) ? null : Maps.safeGet(row, columnKey);
      }
    
      @Override
      public boolean isEmpty() {
        return size() == 0;
      }
    
      @Override
      public void clear() {
        Iterators.clear(cellSet().iterator());
      }
    
      @CanIgnoreReturnValue
      @Override
      @CheckForNull
      public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/ant/BasicAntBuilder.java

            project.fireBuildFinished(null);
            ComponentHelper helper = ComponentHelper.getComponentHelper(project);
            helper.getAntTypeTable().clear();
            helper.getDataTypeDefinitions().clear();
            project.getReferences().clear();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/s390x/ggen.go

    		p = pp.Append(p, s390x.ABRCTG, obj.TYPE_REG, ireg, 0, obj.TYPE_BRANCH, 0, 0)
    		p.To.SetTarget(pl)
    		cnt = cnt % 256
    	}
    
    	// Generate remaining clear instructions without a loop.
    	for cnt > 0 {
    		n := cnt
    
    		// Can clear at most 256 bytes per instruction.
    		if n > 256 {
    			n = 256
    		}
    
    		switch n {
    		// Handle very small clears with move instructions.
    		case 8, 4, 2, 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/metric_recorder_test.go

    			fakeRecorder.Dec()
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	if fakeRecorder.counter != int64(incLoops-decLoops) {
    		t.Errorf("Expected %v, got %v", incLoops-decLoops, fakeRecorder.counter)
    	}
    	// verify Clear() works
    	fakeRecorder.Clear()
    	if fakeRecorder.counter != int64(0) {
    		t.Errorf("Expected %v, got %v", 0, fakeRecorder.counter)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 00:51:07 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    func (ifr *Ifreq) SetUint16(v uint16) {
    	ifr.clear()
    	*(*uint16)(unsafe.Pointer(&ifr.raw.Ifru[:2][0])) = v
    }
    
    // Uint32 returns the Ifreq union data as a C int/Go uint32 value.
    func (ifr *Ifreq) Uint32() uint32 {
    	return *(*uint32)(unsafe.Pointer(&ifr.raw.Ifru[:4][0]))
    }
    
    // SetUint32 sets a C int/Go uint32 value as the Ifreq's union data.
    func (ifr *Ifreq) SetUint32(v uint32) {
    	ifr.clear()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/bug_report.md

    (_Please see [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/8) before filing a bug._)
    
    **Describe the bug**
    A clear and concise description of what the bug is.
    
    **To Reproduce**
    Steps to reproduce the behavior:
    1. Go to '...'
    2. Click on '....'
    3. Scroll down to '....'
    4. See error
    
    **Expected behavior**
    A clear and concise description of what you expected to happen.
    
    **Screenshots**
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Feb 10 22:19:06 UTC 2020
    - 749 bytes
    - Viewed (0)
  8. association.go

    			appendToRelations(reflectValue.Index(i), reflect.Indirect(reflect.ValueOf(values[i])), clear)
    			if association.Error != nil {
    				return
    			}
    
    			// TODO support save slice data, sql with case?
    			association.Error = associationDB.Updates(reflectValue.Index(i).Addr().Interface()).Error
    		}
    	case reflect.Struct:
    		// clear old data
    		if clear && len(values) == 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

                    IsolateOwners.OwnerGradle(gradle)
                )
                clear()
                IsolatedProjectEvaluationListener(gradle, isolate)
            }
        }
    
        override fun clear() {
            beforeProject.clear()
            afterProject.clear()
        }
    
        private
        fun isolate(actions: IsolatedProjectActions, owner: IsolateOwner) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/scheduler/metrics/metric_recorder.go

    package metrics
    
    import (
    	"time"
    
    	"k8s.io/component-base/metrics"
    )
    
    // MetricRecorder represents a metric recorder which takes action when the
    // metric Inc(), Dec() and Clear()
    type MetricRecorder interface {
    	Inc()
    	Dec()
    	Clear()
    }
    
    var _ MetricRecorder = &PendingPodsRecorder{}
    
    // PendingPodsRecorder is an implementation of MetricRecorder
    type PendingPodsRecorder struct {
    	recorder metrics.GaugeMetric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 07:27:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top