Search Options

Results per page
Sort
Preferred Languages
Advance

Results 941 - 950 of 1,165 for REMOVE (0.07 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({
      // Whenever both tests are cheap and functional, it's faster to use &, | instead of &&, ||
      "ShortCircuitBoolean",
      "nullness", // TODO(b/147136275): Remove once our checker understands & and |.
    })
    abstract class AbstractTransformFuture<
            I extends @Nullable Object, O extends @Nullable Object, F, T extends @Nullable Object>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. manifests/charts/README.md

    in that cluster. Currently, the minimum we require is the security provider (node agent or citadel).
    
    ### Install Istio CRDs
    
    This is the first step of the installation. Please do not remove or edit any CRD - config currently requires
    all CRDs to be present. On each upgrade it is recommended to reapply the file, to make sure
    you get all CRDs.  CRDs are separated by release and by component type in the CRD directory.
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 31 16:56:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/batch/v1/generated.proto

      // (succeeded or failed), the controller does three steps to account for it
      // in the job status:
      //
      // 1. Add the pod UID to the arrays in this field.
      // 2. Remove the pod finalizer.
      // 3. Remove the pod UID from the arrays while increasing the corresponding
      //     counter.
      //
      // Old jobs might not be tracked using this field, in which case the field
      // remains null.
      // +optional
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                    }
    
                    if(( ntlm = NtlmSsp.authenticate( req, resp, challenge )) == null ) {
                        return null;
                    }
                    /* negotiation complete, remove the challenge object */
                    ssn.removeAttribute( "NtlmHttpChal" );
                } else {
                    String auth = new String(Base64.decode(msg.substring(6)),
                            "US-ASCII");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.14.md

    * fix: detach azure disk issue using dangling error ([#81266](https://github.com/kubernetes/kubernetes/pull/81266), [@andyzhangx](https://github.com/andyzhangx))
    * remove iSCSI volume storage cleartext secrets in logs ([#81215](https://github.com/kubernetes/kubernetes/pull/81215), [@zouyee](https://github.com/zouyee))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  6. docs/features/interceptors.md

     * Observe the data just as it will be transmitted over the network.
     * Access to the `Connection` that carries the request.
    
    ### Rewriting Requests
    
    Interceptors can add, remove, or replace request headers. They can also transform the body of those requests that have one. For example, you can use an application interceptor to add request body compression if you're connecting to a webserver known to support it.
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  7. cmd/os-readdir_test.go

    	testResults = append(testResults, setupTestReadDirGeneric(t)...)
    	// Setup and capture test results for directory with files and symlink.
    	testResults = append(testResults, setupTestReadDirSymlink(t)...)
    
    	// Remove all dirs once tests are over.
    	defer teardown(testResults)
    
    	// Validate all the results.
    	for _, r := range testResults {
    		if entries, err := readDir(r.dir); err != nil {
    			t.Fatal("failed to run test.", err)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                }
            }
    
            return obj;
        }
    
    
        private void updateLookupTable ( Name name ) {
            synchronized ( this.inFlightLookups ) {
                this.inFlightLookups.remove(name);
                this.inFlightLookups.notifyAll();
            }
        }
    
    
        void cacheAddress ( Name hostName, NbtAddress addr ) {
            if ( this.transportContext.getConfig().getNetbiosCachePolicy() == 0 ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                                        doc.get(fessConfig.getIndexFieldUrl()));
                            }
                            doc.remove(thumbnailField);
                        }
                    });
                }
                final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
                synchronized (searchEngineClient) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbCopyUtil.java

                log.trace("copyTo0", sae);
                int dattrs = dest.getAttributes();
                if ( ( dattrs & SmbConstants.ATTR_READONLY ) != 0 ) {
                    /*
                     * Remove READONLY and try again
                     */
                    dest.setPathInformation(dattrs & ~SmbConstants.ATTR_READONLY, 0L, 0L, 0L);
                    return dest.openUnshared(
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
Back to top