Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,440 for Removes (0.11 sec)

  1. pkg/util/removeall/removeall.go

    		}
    	}
    
    	// Close directory, because windows won't remove opened directory.
    	fd.Close()
    
    	// Remove directory.
    	err1 := remove(path)
    	if err1 == nil || os.IsNotExist(err1) {
    		return nil
    	}
    	if err == nil {
    		err = err1
    	}
    	return err
    }
    
    // RemoveAllOneFilesystem removes the path and any children it contains, using
    // the os.Remove function. It makes sure it does not cross mount boundaries,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator-remove.go

    }
    
    func operatorRemoveCmd(ctx cli.Context, rootArgs *RootArgs, orArgs *operatorRemoveArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "remove",
    		Short: "Removes the Istio operator controller from the cluster.",
    		Long:  "The remove subcommand removes the Istio operator controller from the cluster.",
    		Args: func(cmd *cobra.Command, args []string) error {
    			if orArgs.revision == "" && !orArgs.purge {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/kubelet/container/testing/os.go

    	}
    	return nil, errors.New("unimplemented testing mock")
    }
    
    // Remove is a fake call that returns nil.
    func (f *FakeOS) Remove(path string) error {
    	f.Removes = append(f.Removes, path)
    	return nil
    }
    
    // RemoveAll is a fake call that just returns nil.
    func (f *FakeOS) RemoveAll(path string) error {
    	f.Removes = append(f.Removes, path)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 13:37:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            return node instanceof UnknownFileSystemNode
        }
    
        @Override
        boolean isAllowEmptyChildren() {
            return false
        }
    
        def "invalidate #vfsSpec.searchedPath removes child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildStaleOutputsIntegrationTest.groovy

            sharedLibrary("build/lib/main/debug/hello").assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "removes stale installed executable and library file when all source files for executable are removed"() {
            createDirs("app", "greeter")
            settingsFile << "include 'app', 'greeter'"
            def app = new IncrementalCppStaleLinkOutputAppWithLib()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/intset.go

    	}
    	return s.members[i] > 0
    }
    
    // reset removes all ids, effectively setting their refcounts to 0.
    // it is not thread-safe.
    func (s *intSet) reset() {
    	for k := range s.members {
    		delete(s.members, k)
    	}
    }
    
    // increment adds one to the refcount of the specified id.
    // it is not thread-safe.
    func (s *intSet) increment(i int) {
    	s.members[i]++
    }
    
    // decrement removes one from the refcount of the specified id,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 10 18:24:13 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    // Creates as pass that removes variables in the session initializer.
    // This job is required with lifting variable passes. Originally, the session
    // initializer function does assigning variables. However, the read-only
    // variable assignments will be done via lifting variables pass by converting
    // the read-only variables to constant ops, instead. This pass removes the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_var_init_by_const.cc

      StringRef getArgument() const final {
        return "quant-remove-var-init-by-const";
      }
    
      StringRef getDescription() const final {
        return "Removes `tf.AssignVariableOp(tf.VarHandleOp, tf.Const)` patterns "
               "from the initializer function of type 'restore_op'.";
      }
    
      void runOnOperation() override;
    };
    
    // Finds and removes the `tf.AssignVariableOp(tf.VarHandleOp, tf.Const)`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:04:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

        /**
         * Removes the given environment variable.
         *
         * @param name The name of the environment variable.
         * @throws NativeIntegrationException If the environment variable cannot be removed.
         */
        void removeEnvironmentVariable(String name) throws NativeIntegrationException;
    
        /**
         * Removes the given environment variable, if possible.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/internal/poll/fd_mutex.go

    				old -= mutexRWait
    				runtime_Semrelease(&mu.rsema)
    			}
    			for old&mutexWMask != 0 {
    				old -= mutexWWait
    				runtime_Semrelease(&mu.wsema)
    			}
    			return true
    		}
    	}
    }
    
    // decref removes a reference from mu.
    // It reports whether there is no remaining reference.
    func (mu *fdMutex) decref() bool {
    	for {
    		old := atomic.LoadUint64(&mu.state)
    		if old&mutexRefMask == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 20 16:55:30 UTC 2018
    - 6.4K bytes
    - Viewed (0)
Back to top