Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 491 for freezes (0.73 sec)

  1. cmd/notification.go

    }
    
    // ServiceFreeze freezes all S3 API calls when 'freeze' is true,
    // 'freeze' is 'false' would resume all S3 API calls again.
    // NOTE: once a tenant is frozen either two things needs to
    // happen before resuming normal operations.
    //   - Server needs to be restarted 'mc admin service restart'
    //   - 'freeze' should be set to 'false' for this call
    //     to resume normal operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    		// only gets us to the caller's fp.
    		gp.sched.bp = sp - goarch.PtrSize
    	}
    	gp.sched.ret = 1
    	gogo(&gp.sched)
    }
    
    // fatalthrow implements an unrecoverable runtime throw. It freezes the
    // system, prints stack traces starting from its caller, and terminates the
    // process.
    //
    //go:nosplit
    func fatalthrow(t throwType) {
    	pc := getcallerpc()
    	sp := getcallersp()
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    	// after it reaches 255 and so, if an edge is executed at least one time, the entry is
    	// never 0.
    	// Another policy presented in the paper is the Saturated Counters policy which
    	// freezes the counter when it reaches the value of 255. However, a range
    	// of experiments showed that that decreases overall performance.
    	o.append(ir.NewIfStmt(base.Pos,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. src/net/rpc/server.go

    }
    
    // Server represents an RPC Server.
    type Server struct {
    	serviceMap sync.Map   // map[string]*service
    	reqLock    sync.Mutex // protects freeReq
    	freeReq    *Request
    	respLock   sync.Mutex // protects freeResp
    	freeResp   *Response
    }
    
    // NewServer returns a new [Server].
    func NewServer() *Server {
    	return &Server{}
    }
    
    // DefaultServer is the default instance of [*Server].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h

    // * `export_to_mlir` enables exporting to MLIR text format, otherwise exported
    // in flat buffer. If the
    // * `session` pointer may provided, it will be used to freeze resource
    // variables. If the `saved_model_dir` directory path is provided, then the
    // `tf_saved_model.asset` ops will be freezed.
    Status ConvertTFExecutorToTFLOrFlatbuffer(
        mlir::ModuleOp module, bool export_to_mlir, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 08:30:24 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/ProviderMigrationArchitectureTest.java

            .that(are(mutable_public_API_properties))
            .and().haveRawReturnType(assignableTo(FileCollection.class))
            .should(haveFileCollectionReturnType()));
    
        @ArchTest
        public static final ArchRule mutable_public_api_properties_should_not_use_text_resources = freeze(methods()
            .that(are(mutable_public_API_properties))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/library/freeze/LineNumberIgnoringViolationStore.java

     * limitations under the License.
     */
    
    package org.gradle.architecture.library.freeze;
    
    import com.tngtech.archunit.lang.ArchRule;
    import com.tngtech.archunit.library.freeze.TextFileBasedViolationStore;
    import com.tngtech.archunit.library.freeze.ViolationStore;
    
    import java.util.List;
    import java.util.Properties;
    
    import static java.util.stream.Collectors.toList;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/resources/archunit.properties

    # limitations under the License.
    #
    
    # Changes the line number in all sources to 0, so line numbers are ignored and changes are easier to review
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 794 bytes
    - Viewed (0)
  9. testing/architecture-test/build.gradle.kts

        override fun asArguments(): Iterable<String> {
            val refreezeBoolean = refreeze.getOrElse(false)
            return listOf(
                "-Darchunit.freeze.store.default.path=${location.absolutePath}",
                "-Darchunit.freeze.refreeze=${refreezeBoolean}",
                "-Darchunit.freeze.store.default.allowStoreUpdate=${refreezeBoolean}"
            )
        }
    }
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    	pos src.XPos // source position of use of this register
    }
    
    // freeReg frees up register r. Any current user of r is kicked out.
    func (s *regAllocState) freeReg(r register) {
    	v := s.regs[r].v
    	if v == nil {
    		s.f.Fatalf("tried to free an already free register %d\n", r)
    	}
    
    	// Mark r as unused.
    	if s.f.pass.debug > regDebug {
    		fmt.Printf("freeReg %s (dump %s/%s)\n", &s.registers[r], v, s.regs[r].c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top