Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for OP (0.01 sec)

  1. cmd/postpolicyform.go

    		}
    	}
    	return parsedPolicy, nil
    }
    
    // checkPolicyCond returns a boolean to indicate if a condition is satisfied according
    // to the passed operator
    func checkPolicyCond(op string, input1, input2 string) bool {
    	switch op {
    	case policyCondEqual:
    		return input1 == input2
    	case policyCondStartsWith:
    		return strings.HasPrefix(input1, input2)
    	}
    	return false
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

                }
    
                @Override
                public long getExecuteTime() {
                    return execTime.get();
                }
    
                @Override
                public void commit() {
                    // No-op for test
                }
            };
    
            // Test initial state
            assertEquals(0L, callback.getDocumentSize());
            assertEquals(0L, callback.getExecuteTime());
    
            // Test store method
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/RequestTest.java

            }
    
            @Override
            public void setUid(int uid) {
                // No-op for test
            }
    
            @Override
            public void setExtendedSecurity(boolean extendedSecurity) {
                // No-op for test
            }
    
            @Override
            public void setSessionId(long sessionId) {
                // No-op for test
            }
    
            @Override
            public void reset() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java

            failedChannel.clearPendingOperations();
    
            // Redistribute to healthy channels
            for (CommonServerMessageBlock op : operationsCopy) {
                try {
                    ChannelInfo alternativeChannel = manager.getLoadBalancer().selectChannel(op);
                    alternativeChannel.addPendingOperation(op);
                    // Operation would be resent on alternative channel
                    // For now, skip actual send implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. docs/nl/docs/index.md

    * Klik op de knop "Try it out", hiermee kan je de parameters invullen en direct met de API interacteren:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    * Klik vervolgens op de knop "Execute", de gebruikersinterface zal communiceren met jouw API, de parameters verzenden, de resultaten ophalen en deze op het scherm tonen:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  6. generics.go

    		},
    	}
    	return v
    }
    
    type g[T any] struct {
    	*createG[T]
    	db  *DB
    	ops []op
    }
    
    func (g *g[T]) apply(ctx context.Context) *DB {
    	db := g.db
    	if !db.DryRun {
    		db = db.Session(&Session{NewDB: true, Context: ctx}).getInstance()
    	}
    
    	for _, op := range g.ops {
    		db = op(db)
    	}
    	return db
    }
    
    func (c *g[T]) Raw(sql string, values ...interface{}) ExecInterface[T] {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/TestingRemovalListeners.java

    /**
     * Utility {@link RemovalListener} implementations intended for use in testing.
     *
     * @author mike nonemacher
     */
    @GwtCompatible
    @NullUnmarked
    final class TestingRemovalListeners {
    
      /** Returns a new no-op {@code RemovalListener}. */
      static <K, V> NullRemovalListener<K, V> nullRemovalListener() {
        return new NullRemovalListener<>();
      }
    
      /** Type-inferring factory method for creating a {@link QueuingRemovalListener}. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle.go

    	OutputBytes      int64  `json:"tx,omitempty"`
    	Error            string `json:"error,omitempty"`
    }
    
    func (op auditTierOp) String() string {
    	// flattening the auditTierOp{} for audit
    	return fmt.Sprintf("tier:%s,respNS:%d,tx:%d,err:%s", op.Tier, op.TimeToResponseNS, op.OutputBytes, op.Error)
    }
    
    func auditTierActions(ctx context.Context, tier string, bytes int64) func(err error) {
    	startTime := time.Now()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/BufferCacheImplTest.java

            assertNotSame(supplied, got, "Zero-sized cache must not return the released instance");
        }
    
        // Edge: releasing null must be a no-op without exceptions
        @Test
        @DisplayName("releaseBuffer(null) is a no-op and does not throw")
        void releaseNullIsNoop() {
            BufferCacheImpl impl = new BufferCacheImpl(1, 4);
            assertDoesNotThrow(() -> impl.releaseBuffer(null));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ConcurrentHashMultisetBasherTest.java

          for (int i = 0; i < iterations; i++) {
            int keyIndex = random.nextInt(nKeys);
            String key = keys.get(keyIndex);
            Operation op = operations[random.nextInt(operations.length)];
            switch (op) {
              case ADD:
                {
                  int delta = random.nextInt(10);
                  multiset.add(key, delta);
                  deltas[keyIndex] += delta;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top