Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for Maintenance (0.29 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.menu_searchLog	=	Journal de recherche
    labels.menu_failure_url	=	Erreur d'URL
    labels.menu_search_list	=	Recherche
    labels.menu_backup	=	Sauvegarde
    labels.menu_access_token	=	Jeton d'accès
    labels.menu_maintenance	=	Maintenance
    labels.menu_related_content	=	Contenu connexe
    labels.menu_related_query	=	Requête associée
    labels.menu_plugin	=	Plugin
    labels.menu_storage	=	Stockage
    labels.sidebar.placeholder_search	=	Recherche...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	get         add dependencies to current module and install them
    //	install     compile and install packages and dependencies
    //	list        list packages or modules
    //	mod         module maintenance
    //	work        workspace maintenance
    //	run         compile and run Go program
    //	telemetry   manage telemetry data and settings
    //	test        test packages
    //	tool        run specified go tool
    //	version     print Go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    dependencies to cut down on these remote server calls.
    
    === Avoid unnecessary and unused dependencies
    
    Managing third-party libraries and their transitive dependencies adds a significant
    cost to project maintenance and build times.
    
    Watch out for unused dependencies: when a third-party library stops being
    used by isn't removed from the dependency list. This happens frequently during refactors.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/net/http/client.go

    		// This is not very efficient, but is the best we can
    		// do without:
    		// - introducing a new method on URL
    		// - creating a race condition
    		// - copying the URL struct manually, which would cause
    		//   maintenance problems down the line
    		auth := lastReq.User.String() + "@"
    		referer = strings.Replace(referer, auth, "", 1)
    	}
    	return referer
    }
    
    // didTimeout is non-nil only if err != nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.2.md

         * Graceful Node Shutdown (aka drain) - The new “kubectl drain” command gracefully
    evicts pods from nodes in preparation for disruptive operations like kernel
    upgrades or maintenance.
         * Custom Metrics for Autoscaling (HorizontalPodAutoscaler API in the Autoscaling
    API group): The Horizontal Pod Autoscaling feature now supports custom metrics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Contains all the Type Definitions and functions declarations
     *  for the CUnit test database maintenance.
     *
     *  Aug 2001      Initial implementation. (AK)
     *
     *  09/Aug/2001   Added Preprocessor conditionals for the file. (AK)
     *
     *  24/aug/2001   Made the linked list from SLL to DLL(doubly linked list). (AK)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    			aux:       "Int64",
    			argLength: 2,
    			reg: regInfo{
    				inputs:   []regMask{buildReg("DI")},
    				clobbers: buildReg("DI"),
    			},
    			faultOnNilArg0: true,
    			unsafePoint:    true, // FP maintenance around DUFFCOPY can be clobbered by interrupts
    		},
    
    		// arg0 = address of memory to zero
    		// arg1 = # of 8-byte words to zero
    		// arg2 = value to store (will always be zero)
    		// arg3 = mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  8. src/runtime/time.go

    			continue
    		}
    
    		if w := pp.timers.wakeTime(); w != 0 {
    			next = min(next, w)
    		}
    	}
    	unlock(&allpLock)
    
    	return next
    }
    
    const timerHeapN = 4
    
    // Heap maintenance algorithms.
    // These algorithms check for slice index errors manually.
    // Slice index error can happen if the program is using racy
    // access to timers. We don't want to panic here, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Access Token */
        public static final String LABELS_menu_access_token = "{labels.menu_access_token}";
    
        /** The key of the message: Maintenance */
        public static final String LABELS_menu_maintenance = "{labels.menu_maintenance}";
    
        /** The key of the message: Related Content */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      if [[ -n "${NODE_ACCELERATORS}" ]]; then
        accelerator_args+=(--maintenance-policy TERMINATE --restart-on-failure --accelerator "${NODE_ACCELERATORS}")
        gcloud="gcloud beta"
      fi
    
      local preemptible_minions=()
      if [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
        preemptible_minions+=(--preemptible --maintenance-policy TERMINATE)
      fi
    
      local local_ssds=()
      local_ssd_ext_count=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top